patricknelson / svelte-retag

Light DOM custom element wrapper for Svelte 3 and 4 with slots, context and Vite HMR support
https://www.npmjs.com/package/svelte-retag
MIT License
38 stars 0 forks source link

Elements bleed out when navigating with back/forward button #48

Open baseplate-admin opened 8 months ago

baseplate-admin commented 8 months ago

Describe the bug

Hi, so when i navigate from one page to another, there is a severe bug that causes elements to mount in a different place from where it needs to be, ( code source )

Problem Image
Here's where it should have been mounted Screenshot 2023-12-23 102319
Here's where it mounted Screenshot 2023-12-23 102332
Here's how it should have looked like Here's how it looks like
Screenshot 2023-12-23 102627 Screenshot 2023-12-23 102615

screen-recorder-sat-dec-23-2023-10-40-07.webm screen-recorder-sat-dec-23-2023-10-47-53.webm

So here's the function behind button clicks

import * as _ from "lodash-es";

export async function goto({ url, anchor = null, verb, target }: { url: string; anchor?: HTMLElement | null; verb: "GET" | "POST" | "DELETE" | "PUT"; target: string }): Promise<void> {
    // Ignore path if it has http in name
    if (!url.startsWith("http")) {
        // Update store
        url_store.set(url);
    }
    // WHAT KIND OF ****ERY IS THIS
    // **** HTMX
    // related : https://github.com/bigskysoftware/htmx/discussions/2116
    // related : https://www.reddit.com/r/htmx/comments/18np8pk/how_to_make_ajax_update_the_history_cache/
    const btn = document.createElement("button");
    btn.setAttribute(`hx-${verb?.toLowerCase()}`, url);
    btn.setAttribute("hx-push-url", url);
    btn.setAttribute("hx-target", target);
    // Hide Button
    btn.style.display = "none";
    // Add `htmx` listener
    htmx.process(btn);
    let _anchor: HTMLElement | null = null;
    if (!_.isNull(anchor)) {
        _anchor = anchor as HTMLElement;
    } else {
        _anchor = document.body as HTMLElement;
    }
    try {
        _anchor?.appendChild(btn);
        btn.click();
    } catch {
        throw new Error("Cannot click button");
    } finally {
        _anchor?.removeChild(btn);
    }
}

Which in turn invokes ( refer to source )

       window.onpopstate = function (event) {
                if (event.state && event.state.htmx) {
                    restoreHistory();
                    forEach(restoredElts, function(elt){
                        triggerEvent(elt, 'htmx:restored', {
                            'document': getDocument(),
                            'triggerEvent': triggerEvent
                        });
                    });
                } else {
                    if (originalPopstate) {
                        originalPopstate(event);
                    }
                }
            };
    function restoreHistory(path) {
            saveCurrentPageToHistory();
            path = path || location.pathname+location.search;
            var cached = getCachedHistory(path);
            if (cached) {
                var fragment = makeFragment(cached.content);
                var historyElement = getHistoryElement();
                var settleInfo = makeSettleInfo(historyElement);
                swapInnerHTML(historyElement, fragment, settleInfo)
                settleImmediately(settleInfo.tasks);
                document.title = cached.title;
                setTimeout(function () {
                    window.scrollTo(0, cached.scroll);
                }, 0); // next 'tick', so browser has time to render layout
                currentPathForHistory = path;
                triggerEvent(getDocument().body, "htmx:historyRestore", {path:path, item:cached});
            } else {
                if (htmx.config.refreshOnHistoryMiss) {

                    // @ts-ignore: optional parameter in reload() function throws error
                    window.location.reload(true);
                } else {
                    loadHistoryFromServer(path);
                }
            }
        }
     function saveToHistoryCache(url, content, title, scroll) {
            if (!canAccessLocalStorage()) {
                return;
            }

            if (htmx.config.historyCacheSize <= 0) {
                // make sure that an eventually already existing cache is purged
                localStorage.removeItem("htmx-history-cache");
                return;
            }

            url = normalizePath(url);

            var historyCache = parseJSON(localStorage.getItem("htmx-history-cache")) || [];
            for (var i = 0; i < historyCache.length; i++) {
                if (historyCache[i].url === url) {
                    historyCache.splice(i, 1);
                    break;
                }
            }
            var newHistoryItem = {url:url, content: content, title:title, scroll:scroll};
            triggerEvent(getDocument().body, "htmx:historyItemCreated", {item:newHistoryItem, cache: historyCache})
            historyCache.push(newHistoryItem)
            while (historyCache.length > htmx.config.historyCacheSize) {
                historyCache.shift();
            }
            while(historyCache.length > 0){
                try {
                    localStorage.setItem("htmx-history-cache", JSON.stringify(historyCache));
                    break;
                } catch (e) {
                    triggerErrorEvent(getDocument().body, "htmx:historyCacheError", {cause:e, cache: historyCache})
                    historyCache.shift(); // shrink the cache and retry
                }
            }
        }

Localstorage state :

htmx-history-cache:"[{"url":"/anime/explore/","content":"\n        \n    <div class=\"relative h-dvh bg-secondary\">\n        <div class=\"w-full h-full flex flex-col overflow-hidden\">\n            <header class=\"flex-none z-10\">\n                <navbar class=\"absolute top-0 flex h-[4.5rem] w-full items-center justify-between bg-surface-900/95 px-4 backdrop-blur-3xl md:static md:h-[10vh] md:bg-surface-900 md:py-[0.9375vw] md:pl-[2.1vw] md:pr-[3.75vw]\">\n                    <a href=\"/\">\n                        <coreproject-icon-coreproject class=\"w-9 md:w-[2.25vw] md:pt-[0.75vw]\"><svelte-retag><svg class=\"w-9 md:w-[2.25vw] md:pt-[0.75vw]\" style=\"\" viewBox=\"0 0 28 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_3565_5702)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 31.9999C19.5228 31.9999 24 27.5536 24 22.0689C24 16.5841 19.5228 12.1378 14 12.1378C8.47715 12.1378 4 16.5841 4 22.0689C4 27.5536 8.47715 31.9999 14 31.9999ZM13.9991 26.4828C16.4537 26.4828 18.4436 24.5067 18.4436 22.069C18.4436 19.6313 16.4537 17.6552 13.9991 17.6552C11.5445 17.6552 9.55469 19.6313 9.55469 22.069C9.55469 24.5067 11.5445 26.4828 13.9991 26.4828Z\" fill=\"#7569E1\"></path><ellipse cx=\"13.9993\" cy=\"3.31035\" rx=\"3.33333\" ry=\"3.31035\" fill=\"#DCD9F7\"></ellipse></g><defs><filter id=\"filter0_d_3565_5702\" x=\"0\" y=\"0\" width=\"28\" height=\"39.9999\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3565_5702\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3565_5702\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></svelte-retag></coreproject-icon-coreproject>\n                    </a>\n                    <div class=\"relative flex items-center md:static\">\n                        <div class=\"absolute left-1/2 -translate-x-1/2\">\n                            <a href=\"/anime\" class=\"hidden md:flex\">\n                                <coreproject-icon-animecore class=\"w-[10vw]\"><svelte-retag><svg class=\"w-[10vw]\" style=\"\" viewBox=\"0 0 140 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_3571_5637)\"><path d=\"M14.912 19.7753C15.4643 19.7753 15.912 19.3276 15.912 18.7753V13.427C15.912 8.37079 13.2925 6.51685 10.1766 6.51685C8.54377 6.51685 7.26248 6.92613 6.29359 7.42579C5.85055 7.65427 5.70348 8.19993 5.91771 8.65003L6.40075 9.66494C6.65214 10.1931 7.29841 10.3837 7.84132 10.1659C8.41308 9.93651 9.05315 9.77528 9.73542 9.77528C10.733 9.77528 11.4202 10.0223 11.8373 10.5105C12.2928 11.0436 11.6016 11.6438 10.9076 11.5435C7.3015 11.0223 4 12.5648 4 15.6461C4 18.0056 5.7096 20 8.7979 20C9.95425 20 10.8941 19.6377 11.6638 19.0664C11.943 18.8592 12.3825 19.0424 12.3825 19.3902C12.3825 19.6029 12.555 19.7753 12.7677 19.7753H14.912ZM11.5398 14.2884C12.0279 14.3998 12.3302 14.8999 12.1186 15.3535C11.5785 16.5115 10.4543 17.191 9.45968 17.191C8.38429 17.191 7.52949 16.6292 7.52949 15.6461C7.52949 14.3635 9.20927 13.7564 11.5398 14.2884Z\" fill=\"white\"></path><path d=\"M25.6155 6.51685C24.4216 6.51685 23.5936 6.88973 23.0037 7.36581C22.75 7.57049 22.3066 7.40819 22.3066 7.08226C22.3066 6.8941 22.1541 6.74157 21.966 6.74157H19.7772C19.2249 6.74157 18.7772 7.18929 18.7772 7.74157V18.7753C18.7772 19.3276 19.2249 19.7753 19.7772 19.7753H21.3066C21.8589 19.7753 22.3066 19.3276 22.3066 18.7753V13.0337C22.3066 10.7303 23.7129 9.88764 24.7332 9.88764C25.8086 9.88764 27.1597 10.3652 27.1597 12.5843V18.7753C27.1597 19.3276 27.6074 19.7753 28.1597 19.7753H29.6892C30.2415 19.7753 30.6892 19.3276 30.6892 18.7753V12.5843C30.6892 8.37079 28.4005 6.51685 25.6155 6.51685Z\" fill=\"white\"></path><path d=\"M35.3253 4.49438C36.5386 4.49438 37.5312 3.48315 37.5312 2.24719C37.5312 1.01124 36.5386 0 35.3253 0C34.112 0 33.1194 1.01124 33.1194 2.24719C33.1194 3.48315 34.112 4.49438 35.3253 4.49438ZM33.5606 18.7753C33.5606 19.3276 34.0083 19.7753 34.5606 19.7753H36.09C36.6423 19.7753 37.09 19.3276 37.09 18.7753V7.74157C37.09 7.18929 36.6423 6.74157 36.09 6.74157H34.5606C34.0083 6.74157 33.5606 7.18929 33.5606 7.74157V18.7753Z\" fill=\"white\"></path><path d=\"M54.6285 6.51685C53.5715 6.51685 52.6695 6.78012 51.896 7.3517C51.3429 7.7604 50.5058 7.73059 49.9607 7.31138C49.2753 6.78436 48.4389 6.51685 47.4592 6.51685C46.3412 6.51685 45.4329 6.77991 44.6357 7.40664C44.3698 7.61568 43.9297 7.44431 43.9297 7.10608C43.9297 6.90477 43.7665 6.74157 43.5652 6.74157H41.4002C40.848 6.74157 40.4002 7.18929 40.4002 7.74157V18.7753C40.4002 19.3276 40.848 19.7753 41.4002 19.7753H42.9297C43.482 19.7753 43.9297 19.3276 43.9297 18.7753V13.0337C43.9297 10.5056 45.336 9.88764 46.246 9.88764C47.2111 9.88764 48.3416 10.3652 48.3416 12.5843V18.7753C48.3416 19.3276 48.7893 19.7753 49.3416 19.7753H50.8711C51.4234 19.7753 51.8711 19.3276 51.8711 18.7753V13.0337C51.8711 10.5056 53.1946 9.88764 54.077 9.88764C55.0421 9.88764 56.283 10.3652 56.283 12.5843V18.7753C56.283 19.3276 56.7307 19.7753 57.283 19.7753H58.8124C59.3647 19.7753 59.8124 19.3276 59.8124 18.7753V12.5843C59.8124 8.37079 57.6341 6.51685 54.6285 6.51685Z\" fill=\"white\"></path><path d=\"M68.9507 16.6292C68.8747 16.6292 68.8005 16.6278 68.7279 16.6248C67.9796 16.5947 67.9171 15.738 68.5539 15.3436L74.1963 11.8494C74.5694 11.6183 74.7547 11.1683 74.6061 10.7554C73.4093 7.42917 70.5231 6.51685 68.8955 6.51685C64.6215 6.51685 62.0296 9.55056 62.0296 13.2584C62.0296 16.9382 64.6767 20 68.8955 20C70.5646 20 72.0332 19.4896 73.3015 18.4862C73.6872 18.181 73.7319 17.6261 73.4472 17.2251L72.7952 16.307C72.4226 15.7823 71.6482 15.7465 71.088 16.0632C70.4335 16.4331 69.6751 16.6292 68.9507 16.6292ZM68.9507 9.88764C69.2575 9.88764 69.5318 9.93725 69.7767 10.0254C70.3622 10.236 70.2528 10.9949 69.7186 11.3138L66.0515 13.503C65.8439 13.6269 65.5591 13.5002 65.5591 13.2584C65.5591 11.4045 66.9653 9.88764 68.9507 9.88764Z\" fill=\"white\"></path><path d=\"M86.5607 15.7303C84.7408 15.7303 83.3621 14.2978 83.3621 12.5843C83.3621 10.8708 84.7408 9.4382 86.5607 9.4382C87.1144 9.4382 87.6253 9.56931 88.0788 9.8169C88.6442 10.1255 89.4129 10.1255 89.8001 9.61075L90.8071 8.27213C91.0953 7.88912 91.0761 7.34898 90.715 7.03375C89.496 5.96944 87.9686 5.39326 86.3401 5.39326C81.7352 5.39326 78.9502 8.59551 78.9502 12.5843C78.9502 16.573 81.7352 19.7753 86.3401 19.7753C87.9686 19.7753 89.496 19.1991 90.715 18.1348C91.0761 17.8196 91.0953 17.2794 90.8071 16.8964L89.8001 15.5578C89.4129 15.043 88.6442 15.043 88.0788 15.3516C87.6253 15.5992 87.1144 15.7303 86.5607 15.7303Z\" fill=\"#DCD9F7\"></path><path d=\"M100.561 5.39326C96.066 5.39326 93.0604 8.59551 93.0604 12.5843C93.0604 16.573 96.1488 19.7753 100.561 19.7753C104.807 19.7753 108.061 16.573 108.061 12.5843C108.061 8.59551 104.752 5.39326 100.561 5.39326ZM100.561 15.7303C98.8786 15.7303 97.4723 14.2978 97.4723 12.5843C97.4723 10.8708 98.8786 9.4382 100.561 9.4382C102.243 9.4382 103.649 10.8708 103.649 12.5843C103.649 14.2978 102.243 15.7303 100.561 15.7303Z\" fill=\"#F2C94C\"></path><path d=\"M115.131 6.8427C115.131 6.29041 114.683 5.8427 114.131 5.8427H111.719C111.167 5.8427 110.719 6.29041 110.719 6.8427V18.3258C110.719 18.8781 111.167 19.3258 111.719 19.3258H114.131C114.683 19.3258 115.131 18.8781 115.131 18.3258V14.3539C115.131 12.1348 116.261 10.7022 117.557 10.3371C117.928 10.2329 118.293 10.171 118.663 10.1597C119.331 10.1394 119.984 9.66674 119.984 8.99851V6.47469C119.984 5.89161 119.485 5.42411 118.911 5.52776C117.05 5.86387 115.902 6.69947 115.131 8.3427V6.8427Z\" fill=\"#DCD9F7\"></path><path d=\"M128.748 15.8427C128.103 15.8427 128.032 15.1573 128.583 14.8215L134.586 11.1607C134.953 10.9371 135.141 10.501 135.015 10.0904C133.821 6.19781 130.713 5.39326 128.913 5.39326C124.308 5.39326 121.523 8.59551 121.523 12.5843C121.523 16.573 124.308 19.7753 128.913 19.7753C130.729 19.7753 132.323 19.2 133.661 18.1372C134.054 17.825 134.092 17.2562 133.79 16.8551L132.73 15.4464C132.371 14.969 131.676 14.9193 131.155 15.2125C130.465 15.6013 129.638 15.8427 128.748 15.8427ZM128.913 9.32584C129.17 9.32584 129.393 9.36917 129.585 9.44089C130.102 9.63369 129.966 10.2878 129.494 10.5741L127.063 12.0513C126.45 12.4236 125.66 12.021 125.892 11.3424C126.319 10.0924 127.548 9.32584 128.913 9.32584Z\" fill=\"#DCD9F7\"></path><circle cx=\"35.1998\" cy=\"2.4\" r=\"2.4\" fill=\"#EDD68D\"></circle></g><defs><filter id=\"filter0_d_3571_5637\" x=\"0\" y=\"0\" width=\"139.054\" height=\"28\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3571_5637\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3571_5637\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></svelte-retag></coreproject-icon-animecore>\n                            </a>\n                            <search-form>\n                                <form class=\"relative flex h-12 w-[65vw] items-center md:hidden\">\n                                    <button class=\"btn absolute left-4 p-0\" aria-label=\"Search\">\n                                        <coreproject-icon-search class=\"w-5 opacity-75\"><svelte-retag><svg class=\"w-5 opacity-75\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-search>\n                                    </button>\n                                    <input type=\"text\" placeholder=\"Search for animes, mangas...\" class=\"h-full w-full rounded-[0.4rem] border-none bg-surface-400 pl-12 text-sm font-semibold text-white shadow-lg !ring-0 placeholder:font-medium placeholder:text-surface-200\">\n                                </form>\n                            </search-form>\n                        </div>\n                    </div>\n                    \n                        <div class=\"dropdown dropdown-end flex\">\n                            <div tabindex=\"0\" role=\"button\" class=\"avatar btn border-none !bg-transparent p-0\">\n                                <div class=\"md:w-[3vw] md:rounded-[0.5vw]\">\n                                    <img src=\"https://daisyui.com/images/stock/photo-1534528741775-53994a69daeb.jpg\">\n                                </div>\n                            </div>\n                            <ul tabindex=\"0\" class=\"dropdown-content z-1 md:min-w-[12vw] md:top-[4vw] md:text-[0.9vw] md:p-[0.5vw] bg-base-100 menu md:rounded-[0.75vw]\">\n                                <div class=\"md:p-[0.75vw] md:py-[0.5vw] flex flex-col leading-none md:gap-[0.35vw]\">\n                                    <span class=\"md:text-[1vw] font-bold capitalize\">baseplate-admin#0001</span>\n                                    <span class=\"md:text-[0.75vw]\">zarifahnaf@outlook.com</span>\n                                </div>\n                                <div class=\"divider md:mb-[0.1vw] mt-0\"></div>\n                                <glider-container _=\"\n       init\n       js(me)\n       const hover_glider_element = me.querySelector('active-glider') ?? null,\n       glider_container_element = me ?? null;\n\n       if (hover_glider_element == null || glider_container_element == null) {\n       console.log('elements are null | skipping | `vercel-hover.js`');\n       return;\n       }\n\n       let direction =\n       glider_container_element.getAttribute('direction') ?? null,\n       GLIDER_TRANSITION_DURATION =\n       parseInt(glider_container_element.getAttribute('duration')) ||\n       200,\n       mouse_leave_timeout = null,\n       is_hovered_from_prev_el = false;\n\n       const handle_mouseenter = (event) => {\n       const target = event.target;\n       const target_computed_style = getComputedStyle(target);\n\n       glider_container_element.style.position = 'relative';\n\n       hover_glider_element.style.height =\n       target_computed_style.height;\n       hover_glider_element.style.width = target_computed_style.width;\n\n       const target_zindex = parseInt(target_computed_style.zIndex);\n       glider_container_element.style.zIndex = String(\n       target_zindex ?? 0\n       );\n       hover_glider_element.style.zIndex = String(\n       target_zindex - 1 ?? -1\n       );\n\n       switch (direction) {\n       case 'vertical':\n       hover_glider_element.style.transform = `translateY(${target.offsetTop}px)`;\n       break;\n       case 'horizontal':\n       hover_glider_element.style.transform = `translateX(${target.offsetLeft}px)`;\n       break;\n       }\n\n       if (is_hovered_from_prev_el) {\n       GLIDER_TRANSITION_DURATION = 200;\n       hover_glider_element.style.transitionDuration = `${GLIDER_TRANSITION_DURATION}ms`;\n       } else {\n       GLIDER_TRANSITION_DURATION = 50;\n       hover_glider_element.style.transitionDuration = `${GLIDER_TRANSITION_DURATION}ms`;\n       setTimeout(\n       () => (hover_glider_element.style.opacity = '100'),\n       GLIDER_TRANSITION_DURATION\n       );\n       is_hovered_from_prev_el = true;\n       }\n\n       clearTimeout(mouse_leave_timeout);\n       },\n       handle_mouseleave = () => {\n       mouse_leave_timeout = setTimeout(() => {\n       hover_glider_element.style.opacity = '0';\n       is_hovered_from_prev_el = false;\n       }, GLIDER_TRANSITION_DURATION);\n       };\n\n       Array.from(glider_container_element.children)\n       .slice(1)\n       .forEach((children) => {\n       children.addEventListener('mouseenter', handle_mouseenter);\n       children.addEventListener('mouseleave', handle_mouseleave);\n       });\n\n       end\n      \" class=\"\" direction=\"vertical\" duration=\"200\">\n    <active-glider class=\"rounded-[0.5vw] bg-primary absolute opacity-0 ease-in-out duration-200\"></active-glider>\n    \n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-user class=\"md:w-[1vw]\"><svelte-retag><svg viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 10.5V9.5C10 8.96957 9.78929 8.46086 9.41421 8.08579C9.03914 7.71071 8.53043 7.5 8 7.5H4C3.46957 7.5 2.96086 7.71071 2.58579 8.08579C2.21071 8.46086 2 8.96957 2 9.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M8 3.5C8 4.60457 7.10457 5.5 6 5.5C4.89543 5.5 4 4.60457 4 3.5C4 2.39543 4.89543 1.5 6 1.5C7.10457 1.5 8 2.39543 8 3.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-user>\n                                                Profile\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-list class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 6.00067L21 6.00139M8 12.0007L21 12.0015M8 18.0007L21 18.0015M3.5 6H3.51M3.5 12H3.51M3.5 18H3.51M4 6C4 6.27614 3.77614 6.5 3.5 6.5C3.22386 6.5 3 6.27614 3 6C3 5.72386 3.22386 5.5 3.5 5.5C3.77614 5.5 4 5.72386 4 6ZM4 12C4 12.2761 3.77614 12.5 3.5 12.5C3.22386 12.5 3 12.2761 3 12C3 11.7239 3.22386 11.5 3.5 11.5C3.77614 11.5 4 11.7239 4 12ZM4 18C4 18.2761 3.77614 18.5 3.5 18.5C3.22386 18.5 3 18.2761 3 18C3 17.7239 3.22386 17.5 3.5 17.5C3.77614 17.5 4 17.7239 4 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-list>\n                                                My List\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-preference class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 18 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 6.125C14.4973 6.125 14.9742 5.92746 15.3258 5.57583C15.6775 5.2242 15.875 4.74728 15.875 4.25C15.875 3.75272 15.6775 3.27581 15.3258 2.92418C14.9742 2.57255 14.4973 2.375 14 2.375C13.5027 2.375 13.0258 2.57255 12.6742 2.92418C12.3225 3.27581 12.125 3.75272 12.125 4.25C12.125 4.74728 12.3225 5.2242 12.6742 5.57583C13.0258 5.92746 13.5027 6.125 14 6.125ZM14 8C14.7014 7.99994 15.3887 7.80319 15.9838 7.4321C16.5789 7.06101 17.0581 6.53045 17.3668 5.90069C17.6756 5.27093 17.8015 4.56721 17.7303 3.86947C17.6591 3.17173 17.3937 2.50793 16.9642 1.95347C16.5347 1.39902 15.9583 0.976128 15.3005 0.732839C14.6427 0.489551 13.9298 0.435617 13.2429 0.577162C12.5559 0.718708 11.9225 1.05006 11.4144 1.53358C10.9438 1.98145 10.5983 2.54324 10.4106 3.16333C10.3841 3.25062 10.305 3.3125 10.2138 3.3125H1.1875C0.93886 3.3125 0.700403 3.41127 0.524588 3.58709C0.348772 3.7629 0.25 4.00136 0.25 4.25C0.25 4.49864 0.348772 4.7371 0.524588 4.91291C0.700403 5.08873 0.93886 5.1875 1.1875 5.1875H10.2139C10.3051 5.1875 10.3842 5.24935 10.4106 5.33661C10.6359 6.08032 11.0872 6.73707 11.7036 7.21448C12.3609 7.72355 13.1686 7.99986 14 8ZM5.875 11.75C5.875 12.2473 5.67746 12.7242 5.32583 13.0758C4.9742 13.4275 4.49728 13.625 4 13.625C3.50272 13.625 3.02581 13.4275 2.67418 13.0758C2.32254 12.7242 2.125 12.2473 2.125 11.75C2.125 11.2527 2.32254 10.7758 2.67418 10.4242C3.02581 10.0725 3.50272 9.875 4 9.875C4.49728 9.875 4.9742 10.0725 5.32583 10.4242C5.67746 10.7758 5.875 11.2527 5.875 11.75ZM7.78581 12.6875C7.69478 12.6875 7.61577 12.7492 7.5892 12.8362C7.33917 13.6558 6.8154 14.3668 6.10312 14.8486C5.34808 15.3594 4.43289 15.5777 3.52859 15.4629C2.62428 15.348 1.79274 14.9078 1.18936 14.2245C0.585987 13.5412 0.252065 12.6616 0.25 11.75C0.24969 10.8371 0.582434 9.95535 1.18583 9.27023C1.78923 8.58511 2.62183 8.14365 3.5275 8.02861C4.43318 7.91358 5.34971 8.13289 6.10522 8.64541C6.81789 9.12888 7.34111 9.84192 7.58947 10.6633C7.61587 10.7506 7.695 10.8125 7.78623 10.8125H16.8125C17.0611 10.8125 17.2996 10.9113 17.4754 11.0871C17.6512 11.2629 17.75 11.5014 17.75 11.75C17.75 11.9986 17.6512 12.2371 17.4754 12.4129C17.2996 12.5887 17.0611 12.6875 16.8125 12.6875H7.78581Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-preference>\n                                                Preference\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-settings class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n                                                Settings\n                                            </a>\n                                        </li>\n                                    \n</glider-container>\n\n                            </ul>\n                        </div>\n                    \n                </navbar>\n            </header>\n            <div class=\"flex-auto w-full h-full flex overflow-hidden\">\n                <aside class=\"flex-none overflow-x-hidden overflow-y-auto w-auto\">\n                    <div class=\"hidden h-full w-[6.25vw] flex-col justify-between py-[2vw] md:flex\">\n                        <div>\n                            <div class=\"flex flex-col items-center\">\n                                <coreproject-specific-search-modal-trigger class=\"btn btn-warning w-[3vw] h-[3vw] p-0 rounded-[0.5vw]\" data-svelte-retag-hydratable=\"\"><svelte-retag><button class=\"btn btn-warning w-[3vw] h-[3vw] p-0 rounded-[0.5vw]\" style=\"\"><svelte-retag-default>\n                                    <coreproject-icon-search class=\"w-[1.25vw] text-black\"><svelte-retag><svg class=\"w-[1.25vw] text-black\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-search>\n                                </svelte-retag-default></button><!--<Trigger>--></svelte-retag></coreproject-specific-search-modal-trigger>\n                            </div>\n                            <coreproject-specific-search-modal data-svelte-retag-hydratable=\"\"><svelte-retag><dialog class=\"modal\"><div class=\"modal-box flex !max-w-fit flex-col items-center bg-secondary md:px-[2vw] md:py-[1vw]\"><form class=\"relative flex h-[3.5vw] w-[40vw] items-center\"><button class=\"btn absolute left-[1.25vw] min-h-max border-none !bg-transparent p-0\" aria-label=\"Search\"><svg class=\"\" style=\"width: 1.25vw;\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></button> <input type=\"text\" placeholder=\"Search for animes, mangas and musics\" class=\"h-full w-full rounded-[0.625vw] border-none bg-neutral pl-[3.50vw] text-[1.1vw] font-semibold text-white shadow-lg !ring-0 placeholder:font-medium placeholder:text-accent/75\"> <button type=\"button\" aria-label=\"Clear\" class=\"btn absolute right-[1.25vw] min-h-max border-none !bg-transparent p-0\"><svg class=\"\" style=\"width: 1.5vw; opacity: 0.7;\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_2536_5517)\"><path d=\"M11 3L5 9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M5 3L11 9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g><defs><filter id=\"filter0_d_2536_5517\" x=\"-2\" y=\"0\" width=\"20\" height=\"20\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2536_5517\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2536_5517\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></button></form> <div class=\"mt-[1.5vw] flex gap-[4vw]\"><div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">anime</span> <div role=\"contentinfo\" class=\"md:mt-[0.2vw] md:h-[30vw] md:w-[20vw] pr-3 md:pr-[0.75vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"w-full\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">Search Away</span> <span class=\"font-semibold leading-none\">\"Find Your Anime Bliss\"</span></div> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></div> <div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">manga</span> <div class=\"bg-surface-400 mt-[0.2vw] h-[30vw] w-[21.875vw] rounded-[0.75vw] shadow-lg\"><div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">mangacore integration</span> <span class=\"font-semibold leading-none\">coming soon</span></div></div></div> <div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">music</span> <div class=\"bg-surface-400 mt-[0.2vw] h-[30vw] w-[21.875vw] rounded-[0.75vw] shadow-lg\"><div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">soundcore integration</span> <span class=\"font-semibold leading-none\">coming soon</span></div></div></div></div> <p class=\"mt-[2vw] text-[0.8vw]\"><b>Note:</b>\r\n            Navigate through animes, mangas and sounds with\r\n            <kbd class=\"kbd kbd-xs\">▲</kbd> <kbd class=\"kbd kbd-xs\">▼</kbd>\r\n            and\r\n            <kbd class=\"kbd kbd-xs\">Tab</kbd>\r\n            keys.</p></div> <form method=\"dialog\" class=\"modal-backdrop\"><button>close</button></form></dialog><!--<Index>--></svelte-retag></coreproject-specific-search-modal>\n\n                            <coreproject-sidebar><svelte-retag><div class=\"mt-[2.8125vw] flex flex-col items-center gap-[0.75vw]\" style=\"position: relative;\"><div class=\"rounded-[0.75vw] bg-white/10 absolute opacity-0 duration-200 ease-in-out\" style=\"height: 76.8px; width: 76.8px; transform: translateY(91px); transition-duration: 200ms; opacity: 0;\"></div> <button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\" style=\"\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.99961 16V12C7.99961 11.4477 8.44733 11 8.99961 11H10.9996C11.5519 11 11.9996 11.4477 11.9996 12V16C11.9996 16.55 12.4496 17 12.9996 17H15.9996C16.5496 17 16.9996 16.55 16.9996 16V9.99997C16.9996 9.44769 17.4473 8.99997 17.9996 8.99997H18.6996C19.1596 8.99997 19.3796 8.42997 19.0296 8.12997L10.6696 0.599971C10.2896 0.259971 9.70961 0.259971 9.32961 0.599971L0.96961 8.12997C0.62961 8.42997 0.83961 8.99997 1.29961 8.99997H1.99961C2.55189 8.99997 2.99961 9.44769 2.99961 9.99997V16C2.99961 16.55 3.44961 17 3.99961 17H6.99961C7.54961 17 7.99961 16.55 7.99961 16Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">home</span></div></div> </button><button type=\"button\" class=\"btn h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 relative !bg-accent before:absolute before:-left-[0.15vw] before:z-10 before:h-[1.25vw] before:w-[0.25vw] before:rounded-full before:bg-primary\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\" style=\"\"><icon class=\"!text-secondary\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM5.65317 13.0185C5.26027 13.864 6.13598 14.7397 6.98146 14.3468L11.3472 12.318C11.7752 12.1191 12.1191 11.7752 12.318 11.3472L14.3468 6.98146C14.7397 6.13599 13.864 5.26026 13.0185 5.65317L8.65283 7.68197C8.22479 7.88089 7.88089 8.22479 7.68197 8.65283L5.65317 13.0185ZM10 8.9C10.61 8.9 11.1 9.39 11.1 10C11.1 10.61 10.61 11.1 10 11.1C9.39 11.1 8.9 10.61 8.9 10C8.9 9.39 9.39 8.9 10 8.9Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 6.00067L21 6.00139M8 12.0007L21 12.0015M8 18.0007L21 18.0015M3.5 6H3.51M3.5 12H3.51M3.5 18H3.51M4 6C4 6.27614 3.77614 6.5 3.5 6.5C3.22386 6.5 3 6.27614 3 6C3 5.72386 3.22386 5.5 3.5 5.5C3.77614 5.5 4 5.72386 4 6ZM4 12C4 12.2761 3.77614 12.5 3.5 12.5C3.22386 12.5 3 12.2761 3 12C3 11.7239 3.22386 11.5 3.5 11.5C3.77614 11.5 4 11.7239 4 12ZM4 18C4 18.2761 3.77614 18.5 3.5 18.5C3.22386 18.5 3 18.2761 3 18C3 17.7239 3.22386 17.5 3.5 17.5C3.77614 17.5 4 17.7239 4 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">list</span></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.667 2.49998H15.3337C15.0575 2.49998 14.8337 2.27612 14.8337 1.99998V1.66665C14.8337 1.20831 14.4587 0.833313 14.0003 0.833313C13.542 0.833313 13.167 1.20831 13.167 1.66665V1.99998C13.167 2.27612 12.9431 2.49998 12.667 2.49998H5.33366C5.05752 2.49998 4.83366 2.27612 4.83366 1.99998V1.66665C4.83366 1.20831 4.45866 0.833313 4.00033 0.833313C3.54199 0.833313 3.16699 1.20831 3.16699 1.66665V1.99998C3.16699 2.27612 2.94313 2.49998 2.66699 2.49998H2.33366C1.41699 2.49998 0.666992 3.24998 0.666992 4.16665V17.5C0.666992 18.4166 1.41699 19.1666 2.33366 19.1666H15.667C16.5837 19.1666 17.3337 18.4166 17.3337 17.5V4.16665C17.3337 3.24998 16.5837 2.49998 15.667 2.49998ZM14.8337 17.5H3.16699C2.70866 17.5 2.33366 17.125 2.33366 16.6666V6.66665H15.667V16.6666C15.667 17.125 15.292 17.5 14.8337 17.5Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">schedule</span></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.667 4.00002H15.3337C15.0575 4.00002 14.8337 4.22388 14.8337 4.50002V10.6667C14.8337 11.125 14.4587 11.5 14.0003 11.5H4.50033C4.22418 11.5 4.00033 11.7239 4.00033 12V12.3334C4.00033 13.25 4.75033 14 5.66699 14H13.7932C13.9258 14 14.053 14.0527 14.1468 14.1465L16.4801 16.4798C16.7951 16.7948 17.3337 16.5717 17.3337 16.1262V5.66669C17.3337 4.75002 16.5837 4.00002 15.667 4.00002ZM13.167 8.16669V2.33335C13.167 1.41669 12.417 0.666687 11.5003 0.666687H2.33366C1.41699 0.666687 0.666992 1.41669 0.666992 2.33335V11.9596C0.666992 12.405 1.20556 12.6281 1.52055 12.3131L3.85388 9.9798C3.94765 9.88603 4.07482 9.83335 4.20743 9.83335H11.5003C12.417 9.83335 13.167 9.08335 13.167 8.16669Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">forum</span></div></div> </button></div><!--<VercelHover>--><!--<Index>--></svelte-retag></coreproject-sidebar>\n\n                        </div>\n                        <div class=\"flex flex-col items-center\">\n                            <button type=\"button\" class=\"btn !bg-transparent border-none w-[4vw] h-[4vw] flex-col justify-center gap-[0.45vw] p-0 text-sm\">\n                                <coreproject-icon-settings class=\"w-[1.25vw] text-white\"><svelte-retag><svg class=\"w-[1.25vw] text-white\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n                                <span class=\"!m-0 text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">\n                                    settings\n                                </span>\n                            </button>\n                            <button type=\"button\" class=\"btn !bg-transparent border-none w-[4vw] h-[4vw] flex-col justify-center gap-[0.45vw] p-0 text-sm\">\n                                <coreproject-icon-misc class=\"w-[1.25vw] text-white\"><svelte-retag><svg class=\"w-[1.25vw] text-white\" style=\"\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.00033 0.666656C4.40033 0.666656 0.666992 4.39999 0.666992 8.99999C0.666992 13.6 4.40033 17.3333 9.00033 17.3333C13.6003 17.3333 17.3337 13.6 17.3337 8.99999C17.3337 4.39999 13.6003 0.666656 9.00033 0.666656ZM9.00033 15.6667C5.32533 15.6667 2.33366 12.675 2.33366 8.99999C2.33366 5.32499 5.32533 2.33332 9.00033 2.33332C12.6753 2.33332 15.667 5.32499 15.667 8.99999C15.667 12.675 12.6753 15.6667 9.00033 15.6667ZM8.16699 12.3333H9.83366V14H8.16699V12.3333ZM9.50866 4.03332C7.79199 3.78332 6.27533 4.84166 5.81699 6.35832C5.66699 6.84166 6.03366 7.33332 6.54199 7.33332H6.70866C7.05033 7.33332 7.32533 7.09166 7.44199 6.77499C7.70866 6.03332 8.50033 5.52499 9.35866 5.70832C10.1503 5.87499 10.7337 6.64999 10.667 7.45832C10.5837 8.57499 9.31699 8.81666 8.62533 9.85832C8.62533 9.86666 8.61699 9.86666 8.61699 9.87499C8.60866 9.89166 8.60033 9.89999 8.59199 9.91666C8.51699 10.0417 8.44199 10.1833 8.38366 10.3333C8.37533 10.3583 8.35866 10.375 8.35033 10.4C8.34199 10.4167 8.34199 10.4333 8.33366 10.4583C8.23366 10.7417 8.16699 11.0833 8.16699 11.5H9.83366C9.83366 11.15 9.92533 10.8583 10.067 10.6083C10.0837 10.5833 10.092 10.5583 10.1087 10.5333C10.1753 10.4167 10.2587 10.3083 10.342 10.2083C10.3503 10.2 10.3587 10.1833 10.367 10.175C10.4503 10.075 10.542 9.98332 10.642 9.89166C11.442 9.13332 12.5253 8.51666 12.3003 6.92499C12.1003 5.47499 10.9587 4.24999 9.50866 4.03332Z\" fill=\"white\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-misc>\n                                <span class=\"!m-0 text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">\n                                    misc.\n                                </span>\n                            </button>\n                        </div>\n                    </div>\n                </aside>\n                <div id=\"page\" class=\"flex-1 overflow-x-hidden flex flex-col\" style=\"scrollbar-gutter: auto;\"><coreproject-page-explore data-svelte-retag-hydratable=\"\"><svelte-retag><section class=\"mt-20 flex flex-col p-5 md:mt-0 md:gap-[1.5vw] md:pb-[2.5vw] md:pl-[1.5vw] md:pr-[3.75vw] md:pt-0\"><div class=\"flex flex-col gap-2 md:gap-[0.5vw]\"><div class=\"text-2xl font-bold leading-none md:text-[2vw]\">Anime <span class=\"text-warning\">Explore</span></div> <span class=\"text-base font-normal leading-none md:text-[1.1vw]\">Unleash your inner Otaku: Explore anime wonders</span></div> <div class=\"mt-10 flex flex-col gap-1 md:hidden\"><span class=\"text-base font-semibold leading-none\">Search Animes</span> <div class=\"relative flex items-center\"><svg class=\"pointer-events-none absolute ml-4 w-4\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--> <input type=\"text\" placeholder=\"Looking for specific anime? Start from here...\" class=\"w-full rounded-lg border-none bg-neutral py-3 pl-12 leading-none focus:ring-0 md:bg-neutral\"></div></div> <div class=\"mt-3 flex items-end justify-between gap-3 md:mt-0 md:gap-0\"><div class=\"flex items-center gap-3 md:gap-[1.5vw]\"><div class=\"hidden flex-col gap-[0.35vw] md:flex\"><span class=\"text-[1vw] font-semibold leading-none\">Search Animes</span> <div class=\"relative flex items-center\"><div class=\"absolute md:ml-[1vw]\"><svg class=\"md:w-[1.1vw]\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></div> <input type=\"text\" placeholder=\"Looking for specific anime? Start from here...\" class=\"w-[30vw] rounded-[0.5vw] border-none bg-neutral py-[0.8vw] pl-[3vw] text-[1vw] font-semibold leading-none text-neutral-content placeholder:font-medium placeholder:text-neutral-content/75 focus:ring-0 md:bg-neutral\"></div></div> <div class=\"hidden flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Time Range</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>-->  <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"md:flex flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Genres</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Action  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Adventure  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Hentai  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Romance  </button> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"md:flex flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Year</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">2020  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">2021  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">2022  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">2023  </button> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"md:flex flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Season</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Winter  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Spring  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Summer  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Fall  </button> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"hidden md:flex flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Format</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">TV Show  </button><button class=\"btn btn-neutral relative flex h-max min-h-max items-center justify-start p-3 text-sm leading-none md:rounded-[0.35vw] md:px-[1vw] md:py-[0.75vw] md:text-[0.9vw]\">Movie  </button> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"hidden flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Airing Status</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>-->  <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div><div class=\"hidden flex-col md:gap-[0.35vw] group dropdown dropdown-bottom\"><span class=\"font-semibold leading-none md:text-[1vw]\">Sort by</span> <div class=\"relative flex items-center\"><span class=\"absolute flex cursor-pointer items-center md:gap-[0.25vw]\"><span class=\"ml-3 text-base duration-300 group-focus-within:opacity-0 md:ml-[1vw] md:text-[0.9vw]\">Any</span> </span> <input type=\"text\" tabindex=\"0\" role=\"button\" class=\"peer placeholder w-full rounded-lg border-none bg-neutral py-3 text-base font-semibold leading-none text-neutral-content placeholder:font-medium focus:ring-0 md:w-[11vw] md:rounded-[0.5vw] md:bg-neutral md:py-[0.8vw] md:pl-[1vw] md:text-[1vw]\"> </div> <button tabindex=\"0\" class=\"dropdown-content z-10 w-[8.5rem] overflow-x-hidden rounded-lg md:mt-[1vw] md:w-[11vw] md:rounded-[0.5vw]\"><div role=\"contentinfo\" class=\"md:max-h-[30vw] bg-neutral flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"flex w-full flex-col md:p-[0.35vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>-->  <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></button> </div></div> <button class=\"btn btn-neutral h-max min-h-max rounded-lg p-[0.85rem] md:rounded-[0.5vw] md:p-[0.8vw]\"><svg class=\"w-4 md:w-[1.1vw]\" style=\"\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect x=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect x=\"12\" y=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect y=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect></svg><!--<Index>--></button></div> <div class=\"mt-16 md:mt-[1.5vw]\"><div class=\"flex items-center justify-between\"><div class=\"flex flex-col gap-2 md:gap-[0.35vw]\"><span class=\"text-xl font-semibold leading-none text-accent md:text-[1.35vw]\">Trending Now</span> <span class=\"text-base leading-none md:text-[1vw]\">Crowd Favorites: Anime Hits and Hype</span></div> <div class=\"flex gap-3 md:gap-[1vw]\"><button class=\"btn h-max min-h-max border-none !bg-transparent p-0\"><svg class=\"w-5 md:w-[1.25vw]\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m18 9l-6-6l-6 6h12Zm0 6l-6 6l-6-6h12Z\"></path></svg><!--<Index>--> <span class=\"font-semibold md:text-[1vw]\">Trending</span></button> <div class=\"divider divider-horizontal\"></div> <button class=\"btn h-max min-h-max border-none !bg-transparent p-0\"><svg class=\"w-5 md:w-[1.15vw]\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2zM1 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V7zM1 12a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2z\"></path></svg><!--<Index>--></button> <button class=\"btn h-max min-h-max border-none !bg-transparent p-0\"><svg class=\"w-[1.1rem] md:w-[1vw]\" style=\"\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect x=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect x=\"12\" y=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect><rect y=\"12\" width=\"8\" height=\"8\" rx=\"2\" fill=\"currentColor\"></rect></svg><!--<Index>--></button></div></div> <div class=\"mt-5 grid grid-cols-3 gap-3 md:mt-[1.25vw] md:grid-cols-6 md:gap-[1.5vw]\"><div class=\"dropdown dropdown-hover dropdown-right\"><button class=\"relative\" tabindex=\"0\" aria-expanded=\"false\"><div class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\"><img class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\" alt=\"dfas\" style=\"\" loading=\"lazy\"></div> <div class=\"absolute inset-x-0 bottom-0 rounded-b-lg backdrop-blur md:rounded-b-[0.5vw]\"><div class=\"flex flex-col gap-1 bg-secondary/95 p-3 md:gap-[0.35vw] md:p-[1vw]\"><div role=\"contentinfo\" class=\"flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"line-clamp-1 flex w-full text-start text-sm font-semibold text-accent md:line-clamp-none md:text-[1vw] md:leading-[1.35vw] md:max-h-[1.35vw] hover:max-h-[10vw] duration-300 overflow-hidden ease-in-out scrollbar-none hover:overflow-y-scroll\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <span class=\"line-clamp-1 md:line-clamp-none [&amp;:not(:hover)]:[mask-image:_linear-gradient(90deg,_rgba(7,5,25)_75%,_rgba(0,0,0,0)_100%)]\">dfas</span> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--><!--<Index>--> <span class=\"text-surface-50 flex items-center gap-2 text-xs leading-none md:gap-[0.5vw] md:text-[0.8vw]\"></span></div></div></button> <button tabindex=\"0\" class=\"dropdown-content top-0 z-10 hidden flex-col leading-none md:flex md:w-[20vw] md:px-[1.5vw]\"><div class=\"flex flex-col bg-neutral text-start md:gap-[0.35vw] md:rounded-[0.75vw] md:rounded-t-[0.3vw] md:p-[1vw]\"><span class=\"font-semibold text-accent md:text-[1vw] md:leading-[1.25vw]\">dfas</span> <div class=\"text-surface-50 flex w-full items-center md:gap-[0.35vw] md:text-[0.8vw]\"><div class=\"flex items-center md:gap-[0.5vw]\"><svg viewBox=\"0 0 30 30\" fill=\"yellow\" xmlns=\"http://www.w3.org/2000/svg\" class=\"md:w-[0.9vw]\" style=\"\"><path d=\"M15 2.5L18.8625 10.325L27.5 11.5875L21.25 17.675L22.725 26.275L15 22.2125L7.275 26.275L8.75 17.675L2.5 11.5875L11.1375 10.325L15 2.5Z\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--> <span class=\"text-surface-50 leading-none md:text-[0.8vw]\"> rating</span></div> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <span>TV</span> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <span>1 episdoes</span></div> <div class=\"text-surface-50 md:text-[0.75vw]\"><span></span></div> <div class=\"flex items-center md:my-[0.35vw] md:gap-[0.5vw]\"></div> <div role=\"contentinfo\" class=\"md:max-h-[4vw] pr-3 md:pr-[0.75vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"text-surface-50 md:text-[0.8vw] md:leading-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>-->  <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--> <div class=\"divider md:m-0 md:before:h-[0.15vw] md:after:h-[0.15vw]\"></div> <div class=\"flex items-center md:gap-[0.5vw]\"><a href=\"/anime/mal/1/episode/1\" class=\"btn btn-primary h-[2.75vw] min-h-full flex-1 leading-none text-accent md:rounded-[0.5vw]\"><svg class=\"md:w-[0.9vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--> <span class=\"font-semibold md:text-[0.9vw]\">Start Watching</span></a> <a href=\"/anime/mal/1\" class=\"btn btn-square h-[2.75vw] min-h-full p-0 leading-none md:rounded-[0.5vw]\"><svg class=\"md:w-[1.2vw]\" style=\"\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 27.5C21.9036 27.5 27.5 21.9036 27.5 15C27.5 8.09644 21.9036 2.5 15 2.5C8.09644 2.5 2.5 8.09644 2.5 15C2.5 21.9036 8.09644 27.5 15 27.5Z\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 20V15\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 10H15.0125\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></a></div></div></button></div><!--<AnimeCard>--></div></div></section><!--<Index>--></svelte-retag></coreproject-page-explore>\n</div>\n            </div>\n            <footer id=\"shell-footer\" class=\"flex-none\">\n                <div class=\"flex h-24 items-center justify-center md:hidden\">\n                    <div class=\"flex items-start justify-center gap-5\">\n                        <a href=\"/anime\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-primary-500 btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M7.99961 16V12C7.99961 11.4477 8.44733 11 8.99961 11H10.9996C11.5519 11 11.9996 11.4477 11.9996 12V16C11.9996 16.55 12.4496 17 12.9996 17H15.9996C16.5496 17 16.9996 16.55 16.9996 16V9.99997C16.9996 9.44769 17.4473 8.99997 17.9996 8.99997H18.6996C19.1596 8.99997 19.3796 8.42997 19.0296 8.12997L10.6696 0.599971C10.2896 0.259971 9.70961 0.259971 9.32961 0.599971L0.96961 8.12997C0.62961 8.42997 0.83961 8.99997 1.29961 8.99997H1.99961C2.55189 8.99997 2.99961 9.44769 2.99961 9.99997V16C2.99961 16.55 3.44961 17 3.99961 17H6.99961C7.54961 17 7.99961 16.55 7.99961 16Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">home</span>\n                        </a>\n                        <a href=\"/anime/explore\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-initial btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM5.65317 13.0185C5.26027 13.864 6.13598 14.7397 6.98146 14.3468L11.3472 12.318C11.7752 12.1191 12.1191 11.7752 12.318 11.3472L14.3468 6.98146C14.7397 6.13599 13.864 5.26026 13.0185 5.65317L8.65283 7.68197C8.22479 7.88089 7.88089 8.22479 7.68197 8.65283L5.65317 13.0185ZM10 8.9C10.61 8.9 11.1 9.39 11.1 10C11.1 10.61 10.61 11.1 10 11.1C9.39 11.1 8.9 10.61 8.9 10C8.9 9.39 9.39 8.9 10 8.9Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">explore</span>\n                        </a>\n                        <a href=\"/anime/forum\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-initial btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M15.667 4.00002H15.3337C15.0575 4.00002 14.8337 4.22388 14.8337 4.50002V10.6667C14.8337 11.125 14.4587 11.5 14.0003 11.5H4.50033C4.22418 11.5 4.00033 11.7239 4.00033 12V12.3334C4.00033 13.25 4.75033 14 5.66699 14H13.7932C13.9258 14 14.053 14.0527 14.1468 14.1465L16.4801 16.4798C16.7951 16.7948 17.3337 16.5717 17.3337 16.1262V5.66669C17.3337 4.75002 16.5837 4.00002 15.667 4.00002ZM13.167 8.16669V2.33335C13.167 1.41669 12.417 0.666687 11.5003 0.666687H2.33366C1.41699 0.666687 0.666992 1.41669 0.666992 2.33335V11.9596C0.666992 12.405 1.20556 12.6281 1.52055 12.3131L3.85388 9.9798C3.94765 9.88603 4.07482 9.83335 4.20743 9.83335H11.5003C12.417 9.83335 13.167 9.08335 13.167 8.16669Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">forum</span>\n                        </a>\n                    </div>\n                </div>\n            </footer>\n        </div>\n    </div>\n\n\n \n        <div id=\"toast\" class=\"toast p-0 absolute bottom-[0.75vw] right-[0.75vw]\"></div>\n        <script>\n\n        </script>\n    \n\n<link rel=\"stylesheet\" href=\"/static/debug_toolbar/css/print.css\" media=\"print\">\n<link rel=\"stylesheet\" href=\"/static/debug_toolbar/css/toolbar.css\">\n\n\n<script type=\"module\" src=\"/static/debug_toolbar/js/toolbar.js\" async=\"\"></script>\n\n<div id=\"djDebug\" class=\"\" dir=\"ltr\" data-store-id=\"bd9029b5d108470a8da0105d13758507\" data-render-panel-url=\"/__debug__/render_panel/\" data-sidebar-url=\"/__debug__/history_sidebar/\" data-default-show=\"true\">\n  <div class=\"djdt-hidden\" id=\"djDebugToolbar\">\n    <ul id=\"djDebugPanelList\">\n      <li><a id=\"djHideToolBarButton\" href=\"#\" title=\"Hide toolbar\">Hide »</a></li>\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-HistoryPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtHistoryPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"History\" class=\"HistoryPanel\">\n  \n  History\n  \n    \n      <br><small>/api/v2/anime/?name=&amp;genre=</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-VersionsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtVersionsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Versions\" class=\"VersionsPanel\">\n  \n  Versions\n  \n    \n      <br><small>Django 5.0</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n<li id=\"djdt-TimerPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtTimerPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <div class=\"djdt-contentless\">\n  \n  Time\n  \n    \n      <br><small>Total: 49.83ms</small>\n    \n  \n  \n    </div>\n  \n</li>\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SettingsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSettingsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Settings from core.settings\" class=\"SettingsPanel\">\n  \n  Settings\n  \n    \n      \n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-HeadersPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtHeadersPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Headers\" class=\"HeadersPanel\">\n  \n  Headers\n  \n    \n      \n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-RequestPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtRequestPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Request\" class=\"RequestPanel\">\n  \n  Request\n  \n    \n      <br><small>AnimeViewSet</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SQLPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSQLPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"SQL queries from 1 connection\" class=\"SQLPanel\">\n  \n  SQL\n  \n    \n      <br><small>14 queries in 20.60ms</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-StaticFilesPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtStaticFilesPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Static files (2191 found, 0 used)\" class=\"StaticFilesPanel\">\n  \n  Static files\n  \n    \n      <br><small>0 files used</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-TemplatesPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtTemplatesPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Templates (0 rendered)\" class=\"TemplatesPanel\">\n  \n  Templates\n  \n    \n      \n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-CachePanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtCachePanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Cache calls from 1 backend\" class=\"CachePanel\">\n  \n  Cache\n  \n    \n      <br><small>0 calls in 0.00ms</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SignalsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSignalsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Signals\" class=\"SignalsPanel\">\n  \n  Signals\n  \n    \n      <br><small>77 receivers of 15 signals</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n\n      \n        \n\n<li id=\"djdt-RedirectsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtRedirectsPanel\" title=\"Enable for next and successive requests\">\n  \n    <div class=\"djdt-contentless djdt-disabled\">\n  \n  Intercept redirects\n  \n  \n    </div>\n  \n</li>\n\n      \n        \n\n<li id=\"djdt-ProfilingPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtProfilingPanel\" title=\"Enable for next and successive requests\">\n  \n    <div class=\"djdt-contentless djdt-disabled\">\n  \n  Profiling\n  \n  \n    </div>\n  \n</li>\n\n      \n    </ul>\n  </div>\n  <div class=\"\" id=\"djDebugToolbarHandle\" style=\"top: 0px;\">\n    <div title=\"Show toolbar\" id=\"djShowToolBarButton\">\n      <span id=\"djShowToolBarD\">D</span><span id=\"djShowToolBarJ\">J</span>DT\n    </div>\n  </div>\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"HistoryPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>History</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"VersionsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Versions</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SettingsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Settings from core.settings</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"HeadersPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Headers</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"RequestPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Request</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SQLPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>SQL queries from 1 connection</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"StaticFilesPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Static files (2191 found, 0 used)</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"TemplatesPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Templates (0 rendered)</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"CachePanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Cache calls from 1 backend</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SignalsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Signals</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n\n  \n    \n\n\n\n  \n  <div id=\"djDebugWindow\" class=\"djdt-panelContent djdt-hidden\"></div>\n</div>\n\n\n","title":"Explore - AnimeCore","scroll":0},{"url":"/anime/","content":"<div class=\"relative h-dvh bg-secondary\">\n        <div class=\"w-full h-full flex flex-col overflow-hidden\">\n            <header class=\"flex-none z-10\">\n                <navbar class=\"absolute top-0 flex h-[4.5rem] w-full items-center justify-between bg-surface-900/95 px-4 backdrop-blur-3xl md:static md:h-[10vh] md:bg-surface-900 md:py-[0.9375vw] md:pl-[2.1vw] md:pr-[3.75vw]\">\n                    <a href=\"/\">\n                        <coreproject-icon-coreproject class=\"w-9 md:w-[2.25vw] md:pt-[0.75vw]\"><svelte-retag><svg class=\"w-9 md:w-[2.25vw] md:pt-[0.75vw]\" style=\"\" viewBox=\"0 0 28 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_3565_5702)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 31.9999C19.5228 31.9999 24 27.5536 24 22.0689C24 16.5841 19.5228 12.1378 14 12.1378C8.47715 12.1378 4 16.5841 4 22.0689C4 27.5536 8.47715 31.9999 14 31.9999ZM13.9991 26.4828C16.4537 26.4828 18.4436 24.5067 18.4436 22.069C18.4436 19.6313 16.4537 17.6552 13.9991 17.6552C11.5445 17.6552 9.55469 19.6313 9.55469 22.069C9.55469 24.5067 11.5445 26.4828 13.9991 26.4828Z\" fill=\"#7569E1\"></path><ellipse cx=\"13.9993\" cy=\"3.31035\" rx=\"3.33333\" ry=\"3.31035\" fill=\"#DCD9F7\"></ellipse></g><defs><filter id=\"filter0_d_3565_5702\" x=\"0\" y=\"0\" width=\"28\" height=\"39.9999\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3565_5702\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3565_5702\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></svelte-retag></coreproject-icon-coreproject>\n                    </a>\n                    <div class=\"relative flex items-center md:static\">\n                        <div class=\"absolute left-1/2 -translate-x-1/2\">\n                            <a href=\"/anime\" class=\"hidden md:flex\">\n                                <coreproject-icon-animecore class=\"w-[10vw]\"><svelte-retag><svg class=\"w-[10vw]\" style=\"\" viewBox=\"0 0 140 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_3571_5637)\"><path d=\"M14.912 19.7753C15.4643 19.7753 15.912 19.3276 15.912 18.7753V13.427C15.912 8.37079 13.2925 6.51685 10.1766 6.51685C8.54377 6.51685 7.26248 6.92613 6.29359 7.42579C5.85055 7.65427 5.70348 8.19993 5.91771 8.65003L6.40075 9.66494C6.65214 10.1931 7.29841 10.3837 7.84132 10.1659C8.41308 9.93651 9.05315 9.77528 9.73542 9.77528C10.733 9.77528 11.4202 10.0223 11.8373 10.5105C12.2928 11.0436 11.6016 11.6438 10.9076 11.5435C7.3015 11.0223 4 12.5648 4 15.6461C4 18.0056 5.7096 20 8.7979 20C9.95425 20 10.8941 19.6377 11.6638 19.0664C11.943 18.8592 12.3825 19.0424 12.3825 19.3902C12.3825 19.6029 12.555 19.7753 12.7677 19.7753H14.912ZM11.5398 14.2884C12.0279 14.3998 12.3302 14.8999 12.1186 15.3535C11.5785 16.5115 10.4543 17.191 9.45968 17.191C8.38429 17.191 7.52949 16.6292 7.52949 15.6461C7.52949 14.3635 9.20927 13.7564 11.5398 14.2884Z\" fill=\"white\"></path><path d=\"M25.6155 6.51685C24.4216 6.51685 23.5936 6.88973 23.0037 7.36581C22.75 7.57049 22.3066 7.40819 22.3066 7.08226C22.3066 6.8941 22.1541 6.74157 21.966 6.74157H19.7772C19.2249 6.74157 18.7772 7.18929 18.7772 7.74157V18.7753C18.7772 19.3276 19.2249 19.7753 19.7772 19.7753H21.3066C21.8589 19.7753 22.3066 19.3276 22.3066 18.7753V13.0337C22.3066 10.7303 23.7129 9.88764 24.7332 9.88764C25.8086 9.88764 27.1597 10.3652 27.1597 12.5843V18.7753C27.1597 19.3276 27.6074 19.7753 28.1597 19.7753H29.6892C30.2415 19.7753 30.6892 19.3276 30.6892 18.7753V12.5843C30.6892 8.37079 28.4005 6.51685 25.6155 6.51685Z\" fill=\"white\"></path><path d=\"M35.3253 4.49438C36.5386 4.49438 37.5312 3.48315 37.5312 2.24719C37.5312 1.01124 36.5386 0 35.3253 0C34.112 0 33.1194 1.01124 33.1194 2.24719C33.1194 3.48315 34.112 4.49438 35.3253 4.49438ZM33.5606 18.7753C33.5606 19.3276 34.0083 19.7753 34.5606 19.7753H36.09C36.6423 19.7753 37.09 19.3276 37.09 18.7753V7.74157C37.09 7.18929 36.6423 6.74157 36.09 6.74157H34.5606C34.0083 6.74157 33.5606 7.18929 33.5606 7.74157V18.7753Z\" fill=\"white\"></path><path d=\"M54.6285 6.51685C53.5715 6.51685 52.6695 6.78012 51.896 7.3517C51.3429 7.7604 50.5058 7.73059 49.9607 7.31138C49.2753 6.78436 48.4389 6.51685 47.4592 6.51685C46.3412 6.51685 45.4329 6.77991 44.6357 7.40664C44.3698 7.61568 43.9297 7.44431 43.9297 7.10608C43.9297 6.90477 43.7665 6.74157 43.5652 6.74157H41.4002C40.848 6.74157 40.4002 7.18929 40.4002 7.74157V18.7753C40.4002 19.3276 40.848 19.7753 41.4002 19.7753H42.9297C43.482 19.7753 43.9297 19.3276 43.9297 18.7753V13.0337C43.9297 10.5056 45.336 9.88764 46.246 9.88764C47.2111 9.88764 48.3416 10.3652 48.3416 12.5843V18.7753C48.3416 19.3276 48.7893 19.7753 49.3416 19.7753H50.8711C51.4234 19.7753 51.8711 19.3276 51.8711 18.7753V13.0337C51.8711 10.5056 53.1946 9.88764 54.077 9.88764C55.0421 9.88764 56.283 10.3652 56.283 12.5843V18.7753C56.283 19.3276 56.7307 19.7753 57.283 19.7753H58.8124C59.3647 19.7753 59.8124 19.3276 59.8124 18.7753V12.5843C59.8124 8.37079 57.6341 6.51685 54.6285 6.51685Z\" fill=\"white\"></path><path d=\"M68.9507 16.6292C68.8747 16.6292 68.8005 16.6278 68.7279 16.6248C67.9796 16.5947 67.9171 15.738 68.5539 15.3436L74.1963 11.8494C74.5694 11.6183 74.7547 11.1683 74.6061 10.7554C73.4093 7.42917 70.5231 6.51685 68.8955 6.51685C64.6215 6.51685 62.0296 9.55056 62.0296 13.2584C62.0296 16.9382 64.6767 20 68.8955 20C70.5646 20 72.0332 19.4896 73.3015 18.4862C73.6872 18.181 73.7319 17.6261 73.4472 17.2251L72.7952 16.307C72.4226 15.7823 71.6482 15.7465 71.088 16.0632C70.4335 16.4331 69.6751 16.6292 68.9507 16.6292ZM68.9507 9.88764C69.2575 9.88764 69.5318 9.93725 69.7767 10.0254C70.3622 10.236 70.2528 10.9949 69.7186 11.3138L66.0515 13.503C65.8439 13.6269 65.5591 13.5002 65.5591 13.2584C65.5591 11.4045 66.9653 9.88764 68.9507 9.88764Z\" fill=\"white\"></path><path d=\"M86.5607 15.7303C84.7408 15.7303 83.3621 14.2978 83.3621 12.5843C83.3621 10.8708 84.7408 9.4382 86.5607 9.4382C87.1144 9.4382 87.6253 9.56931 88.0788 9.8169C88.6442 10.1255 89.4129 10.1255 89.8001 9.61075L90.8071 8.27213C91.0953 7.88912 91.0761 7.34898 90.715 7.03375C89.496 5.96944 87.9686 5.39326 86.3401 5.39326C81.7352 5.39326 78.9502 8.59551 78.9502 12.5843C78.9502 16.573 81.7352 19.7753 86.3401 19.7753C87.9686 19.7753 89.496 19.1991 90.715 18.1348C91.0761 17.8196 91.0953 17.2794 90.8071 16.8964L89.8001 15.5578C89.4129 15.043 88.6442 15.043 88.0788 15.3516C87.6253 15.5992 87.1144 15.7303 86.5607 15.7303Z\" fill=\"#DCD9F7\"></path><path d=\"M100.561 5.39326C96.066 5.39326 93.0604 8.59551 93.0604 12.5843C93.0604 16.573 96.1488 19.7753 100.561 19.7753C104.807 19.7753 108.061 16.573 108.061 12.5843C108.061 8.59551 104.752 5.39326 100.561 5.39326ZM100.561 15.7303C98.8786 15.7303 97.4723 14.2978 97.4723 12.5843C97.4723 10.8708 98.8786 9.4382 100.561 9.4382C102.243 9.4382 103.649 10.8708 103.649 12.5843C103.649 14.2978 102.243 15.7303 100.561 15.7303Z\" fill=\"#F2C94C\"></path><path d=\"M115.131 6.8427C115.131 6.29041 114.683 5.8427 114.131 5.8427H111.719C111.167 5.8427 110.719 6.29041 110.719 6.8427V18.3258C110.719 18.8781 111.167 19.3258 111.719 19.3258H114.131C114.683 19.3258 115.131 18.8781 115.131 18.3258V14.3539C115.131 12.1348 116.261 10.7022 117.557 10.3371C117.928 10.2329 118.293 10.171 118.663 10.1597C119.331 10.1394 119.984 9.66674 119.984 8.99851V6.47469C119.984 5.89161 119.485 5.42411 118.911 5.52776C117.05 5.86387 115.902 6.69947 115.131 8.3427V6.8427Z\" fill=\"#DCD9F7\"></path><path d=\"M128.748 15.8427C128.103 15.8427 128.032 15.1573 128.583 14.8215L134.586 11.1607C134.953 10.9371 135.141 10.501 135.015 10.0904C133.821 6.19781 130.713 5.39326 128.913 5.39326C124.308 5.39326 121.523 8.59551 121.523 12.5843C121.523 16.573 124.308 19.7753 128.913 19.7753C130.729 19.7753 132.323 19.2 133.661 18.1372C134.054 17.825 134.092 17.2562 133.79 16.8551L132.73 15.4464C132.371 14.969 131.676 14.9193 131.155 15.2125C130.465 15.6013 129.638 15.8427 128.748 15.8427ZM128.913 9.32584C129.17 9.32584 129.393 9.36917 129.585 9.44089C130.102 9.63369 129.966 10.2878 129.494 10.5741L127.063 12.0513C126.45 12.4236 125.66 12.021 125.892 11.3424C126.319 10.0924 127.548 9.32584 128.913 9.32584Z\" fill=\"#DCD9F7\"></path><circle cx=\"35.1998\" cy=\"2.4\" r=\"2.4\" fill=\"#EDD68D\"></circle></g><defs><filter id=\"filter0_d_3571_5637\" x=\"0\" y=\"0\" width=\"139.054\" height=\"28\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3571_5637\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_3571_5637\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></svelte-retag></coreproject-icon-animecore>\n                            </a>\n                            <search-form>\n                                <form class=\"relative flex h-12 w-[65vw] items-center md:hidden\">\n                                    <button class=\"btn absolute left-4 p-0\" aria-label=\"Search\">\n                                        <coreproject-icon-search class=\"w-5 opacity-75\"><svelte-retag><svg class=\"w-5 opacity-75\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-search>\n                                    </button>\n                                    <input type=\"text\" placeholder=\"Search for animes, mangas...\" class=\"h-full w-full rounded-[0.4rem] border-none bg-surface-400 pl-12 text-sm font-semibold text-white shadow-lg !ring-0 placeholder:font-medium placeholder:text-surface-200\">\n                                </form>\n                            </search-form>\n                        </div>\n                    </div>\n                    \n                        <div class=\"dropdown dropdown-end flex\">\n                            <div tabindex=\"0\" role=\"button\" class=\"avatar btn border-none !bg-transparent p-0\">\n                                <div class=\"md:w-[3vw] md:rounded-[0.5vw]\">\n                                    <img src=\"https://daisyui.com/images/stock/photo-1534528741775-53994a69daeb.jpg\">\n                                </div>\n                            </div>\n                            <ul tabindex=\"0\" class=\"dropdown-content z-1 md:min-w-[12vw] md:top-[4vw] md:text-[0.9vw] md:p-[0.5vw] bg-base-100 menu md:rounded-[0.75vw]\">\n                                <div class=\"md:p-[0.75vw] md:py-[0.5vw] flex flex-col leading-none md:gap-[0.35vw]\">\n                                    <span class=\"md:text-[1vw] font-bold capitalize\">baseplate-admin#0001</span>\n                                    <span class=\"md:text-[0.75vw]\">zarifahnaf@outlook.com</span>\n                                </div>\n                                <div class=\"divider md:mb-[0.1vw] mt-0\"></div>\n                                <glider-container _=\"\n       init\n       js(me)\n       const hover_glider_element = me.querySelector('active-glider') ?? null,\n       glider_container_element = me ?? null;\n\n       if (hover_glider_element == null || glider_container_element == null) {\n       console.log('elements are null | skipping | `vercel-hover.js`');\n       return;\n       }\n\n       let direction =\n       glider_container_element.getAttribute('direction') ?? null,\n       GLIDER_TRANSITION_DURATION =\n       parseInt(glider_container_element.getAttribute('duration')) ||\n       200,\n       mouse_leave_timeout = null,\n       is_hovered_from_prev_el = false;\n\n       const handle_mouseenter = (event) => {\n       const target = event.target;\n       const target_computed_style = getComputedStyle(target);\n\n       glider_container_element.style.position = 'relative';\n\n       hover_glider_element.style.height =\n       target_computed_style.height;\n       hover_glider_element.style.width = target_computed_style.width;\n\n       const target_zindex = parseInt(target_computed_style.zIndex);\n       glider_container_element.style.zIndex = String(\n       target_zindex ?? 0\n       );\n       hover_glider_element.style.zIndex = String(\n       target_zindex - 1 ?? -1\n       );\n\n       switch (direction) {\n       case 'vertical':\n       hover_glider_element.style.transform = `translateY(${target.offsetTop}px)`;\n       break;\n       case 'horizontal':\n       hover_glider_element.style.transform = `translateX(${target.offsetLeft}px)`;\n       break;\n       }\n\n       if (is_hovered_from_prev_el) {\n       GLIDER_TRANSITION_DURATION = 200;\n       hover_glider_element.style.transitionDuration = `${GLIDER_TRANSITION_DURATION}ms`;\n       } else {\n       GLIDER_TRANSITION_DURATION = 50;\n       hover_glider_element.style.transitionDuration = `${GLIDER_TRANSITION_DURATION}ms`;\n       setTimeout(\n       () => (hover_glider_element.style.opacity = '100'),\n       GLIDER_TRANSITION_DURATION\n       );\n       is_hovered_from_prev_el = true;\n       }\n\n       clearTimeout(mouse_leave_timeout);\n       },\n       handle_mouseleave = () => {\n       mouse_leave_timeout = setTimeout(() => {\n       hover_glider_element.style.opacity = '0';\n       is_hovered_from_prev_el = false;\n       }, GLIDER_TRANSITION_DURATION);\n       };\n\n       Array.from(glider_container_element.children)\n       .slice(1)\n       .forEach((children) => {\n       children.addEventListener('mouseenter', handle_mouseenter);\n       children.addEventListener('mouseleave', handle_mouseleave);\n       });\n\n       end\n      \" class=\"\" direction=\"vertical\" duration=\"200\">\n    <active-glider class=\"rounded-[0.5vw] bg-primary absolute opacity-0 ease-in-out duration-200\"></active-glider>\n    \n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-user class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 10.5V9.5C10 8.96957 9.78929 8.46086 9.41421 8.08579C9.03914 7.71071 8.53043 7.5 8 7.5H4C3.46957 7.5 2.96086 7.71071 2.58579 8.08579C2.21071 8.46086 2 8.96957 2 9.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M8 3.5C8 4.60457 7.10457 5.5 6 5.5C4.89543 5.5 4 4.60457 4 3.5C4 2.39543 4.89543 1.5 6 1.5C7.10457 1.5 8 2.39543 8 3.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-user>\n                                                Profile\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-list class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 6.00067L21 6.00139M8 12.0007L21 12.0015M8 18.0007L21 18.0015M3.5 6H3.51M3.5 12H3.51M3.5 18H3.51M4 6C4 6.27614 3.77614 6.5 3.5 6.5C3.22386 6.5 3 6.27614 3 6C3 5.72386 3.22386 5.5 3.5 5.5C3.77614 5.5 4 5.72386 4 6ZM4 12C4 12.2761 3.77614 12.5 3.5 12.5C3.22386 12.5 3 12.2761 3 12C3 11.7239 3.22386 11.5 3.5 11.5C3.77614 11.5 4 11.7239 4 12ZM4 18C4 18.2761 3.77614 18.5 3.5 18.5C3.22386 18.5 3 18.2761 3 18C3 17.7239 3.22386 17.5 3.5 17.5C3.77614 17.5 4 17.7239 4 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-list>\n                                                My List\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-preference class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 18 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 6.125C14.4973 6.125 14.9742 5.92746 15.3258 5.57583C15.6775 5.2242 15.875 4.74728 15.875 4.25C15.875 3.75272 15.6775 3.27581 15.3258 2.92418C14.9742 2.57255 14.4973 2.375 14 2.375C13.5027 2.375 13.0258 2.57255 12.6742 2.92418C12.3225 3.27581 12.125 3.75272 12.125 4.25C12.125 4.74728 12.3225 5.2242 12.6742 5.57583C13.0258 5.92746 13.5027 6.125 14 6.125ZM14 8C14.7014 7.99994 15.3887 7.80319 15.9838 7.4321C16.5789 7.06101 17.0581 6.53045 17.3668 5.90069C17.6756 5.27093 17.8015 4.56721 17.7303 3.86947C17.6591 3.17173 17.3937 2.50793 16.9642 1.95347C16.5347 1.39902 15.9583 0.976128 15.3005 0.732839C14.6427 0.489551 13.9298 0.435617 13.2429 0.577162C12.5559 0.718708 11.9225 1.05006 11.4144 1.53358C10.9438 1.98145 10.5983 2.54324 10.4106 3.16333C10.3841 3.25062 10.305 3.3125 10.2138 3.3125H1.1875C0.93886 3.3125 0.700403 3.41127 0.524588 3.58709C0.348772 3.7629 0.25 4.00136 0.25 4.25C0.25 4.49864 0.348772 4.7371 0.524588 4.91291C0.700403 5.08873 0.93886 5.1875 1.1875 5.1875H10.2139C10.3051 5.1875 10.3842 5.24935 10.4106 5.33661C10.6359 6.08032 11.0872 6.73707 11.7036 7.21448C12.3609 7.72355 13.1686 7.99986 14 8ZM5.875 11.75C5.875 12.2473 5.67746 12.7242 5.32583 13.0758C4.9742 13.4275 4.49728 13.625 4 13.625C3.50272 13.625 3.02581 13.4275 2.67418 13.0758C2.32254 12.7242 2.125 12.2473 2.125 11.75C2.125 11.2527 2.32254 10.7758 2.67418 10.4242C3.02581 10.0725 3.50272 9.875 4 9.875C4.49728 9.875 4.9742 10.0725 5.32583 10.4242C5.67746 10.7758 5.875 11.2527 5.875 11.75ZM7.78581 12.6875C7.69478 12.6875 7.61577 12.7492 7.5892 12.8362C7.33917 13.6558 6.8154 14.3668 6.10312 14.8486C5.34808 15.3594 4.43289 15.5777 3.52859 15.4629C2.62428 15.348 1.79274 14.9078 1.18936 14.2245C0.585987 13.5412 0.252065 12.6616 0.25 11.75C0.24969 10.8371 0.582434 9.95535 1.18583 9.27023C1.78923 8.58511 2.62183 8.14365 3.5275 8.02861C4.43318 7.91358 5.34971 8.13289 6.10522 8.64541C6.81789 9.12888 7.34111 9.84192 7.58947 10.6633C7.61587 10.7506 7.695 10.8125 7.78623 10.8125H16.8125C17.0611 10.8125 17.2996 10.9113 17.4754 11.0871C17.6512 11.2629 17.75 11.5014 17.75 11.75C17.75 11.9986 17.6512 12.2371 17.4754 12.4129C17.2996 12.5887 17.0611 12.6875 16.8125 12.6875H7.78581Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-preference>\n                                                Preference\n                                            </a>\n                                        </li>\n                                        <li>\n                                            <a class=\"flex items-center md:gap-[0.5vw] md:p-[0.75vw] leading-none !text-white !bg-transparent\">\n                                                <coreproject-icon-settings class=\"md:w-[1vw]\"><svelte-retag><svg class=\"md:w-[1vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n                                                Settings\n                                            </a>\n                                        </li>\n                                    \n</glider-container>\n\n                            </ul>\n                        </div>\n                    \n                </navbar>\n            </header>\n            <div class=\"flex-auto w-full h-full flex overflow-hidden\">\n                <aside class=\"flex-none overflow-x-hidden overflow-y-auto w-auto\">\n                    <div class=\"hidden h-full w-[6.25vw] flex-col justify-between py-[2vw] md:flex\">\n                        <div>\n                            <div class=\"flex flex-col items-center\">\n                                <coreproject-specific-search-modal-trigger class=\"btn btn-warning w-[3vw] h-[3vw] p-0 rounded-[0.5vw]\" data-svelte-retag-hydratable=\"\"><svelte-retag><button class=\"btn btn-warning w-[3vw] h-[3vw] p-0 rounded-[0.5vw]\" style=\"\"><svelte-retag-default>\n                                    <coreproject-icon-search class=\"w-[1.25vw] text-black\"><svelte-retag><svg class=\"w-[1.25vw] text-black\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-search>\n                                </svelte-retag-default></button><!--<Trigger>--></svelte-retag></coreproject-specific-search-modal-trigger>\n                            </div>\n                            <coreproject-specific-search-modal data-svelte-retag-hydratable=\"\"><svelte-retag><dialog class=\"modal\"><div class=\"modal-box flex !max-w-fit flex-col items-center bg-secondary md:px-[2vw] md:py-[1vw]\"><form class=\"relative flex h-[3.5vw] w-[40vw] items-center\"><button class=\"btn absolute left-[1.25vw] min-h-max border-none !bg-transparent p-0\" aria-label=\"Search\"><svg class=\"\" style=\"width: 1.25vw;\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 36 36\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M16.5 28.5C23.1274 28.5 28.5 23.1274 28.5 16.5C28.5 9.87258 23.1274 4.5 16.5 4.5C9.87258 4.5 4.5 9.87258 4.5 16.5C4.5 23.1274 9.87258 28.5 16.5 28.5Z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"6\" d=\"M31.5001 31.5001L24.9751 24.9751\"></path></svg><!--<Index>--></button> <input type=\"text\" placeholder=\"Search for animes, mangas and musics\" class=\"h-full w-full rounded-[0.625vw] border-none bg-neutral pl-[3.50vw] text-[1.1vw] font-semibold text-white shadow-lg !ring-0 placeholder:font-medium placeholder:text-accent/75\"> <button type=\"button\" aria-label=\"Clear\" class=\"btn absolute right-[1.25vw] min-h-max border-none !bg-transparent p-0\"><svg class=\"\" style=\"width: 1.5vw; opacity: 0.7;\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_d_2536_5517)\"><path d=\"M11 3L5 9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M5 3L11 9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g><defs><filter id=\"filter0_d_2536_5517\" x=\"-2\" y=\"0\" width=\"20\" height=\"20\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"></feColorMatrix><feOffset dy=\"4\"></feOffset><feGaussianBlur stdDeviation=\"2\"></feGaussianBlur><feComposite in2=\"hardAlpha\" operator=\"out\"></feComposite><feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"></feColorMatrix><feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2536_5517\"></feBlend><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2536_5517\" result=\"shape\"></feBlend></filter></defs></svg><!--<Index>--></button></form> <div class=\"mt-[1.5vw] flex gap-[4vw]\"><div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">anime</span> <div role=\"contentinfo\" class=\"md:mt-[0.2vw] md:h-[30vw] md:w-[20vw] pr-3 md:pr-[0.75vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent]\"><div class=\"w-full\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">Search Away</span> <span class=\"font-semibold leading-none\">\"Find Your Anime Bliss\"</span></div> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></div> <div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">manga</span> <div class=\"bg-surface-400 mt-[0.2vw] h-[30vw] w-[21.875vw] rounded-[0.75vw] shadow-lg\"><div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">mangacore integration</span> <span class=\"font-semibold leading-none\">coming soon</span></div></div></div> <div><span class=\"text-surface-50 text-[1.2vw] font-semibold\">music</span> <div class=\"bg-surface-400 mt-[0.2vw] h-[30vw] w-[21.875vw] rounded-[0.75vw] shadow-lg\"><div class=\"flex h-full flex-col items-center justify-center gap-[0.2vw] text-[1.1vw]\"><span class=\"font-medium leading-none\">soundcore integration</span> <span class=\"font-semibold leading-none\">coming soon</span></div></div></div></div> <p class=\"mt-[2vw] text-[0.8vw]\"><b>Note:</b>\r\n            Navigate through animes, mangas and sounds with\r\n            <kbd class=\"kbd kbd-xs\">▲</kbd> <kbd class=\"kbd kbd-xs\">▼</kbd>\r\n            and\r\n            <kbd class=\"kbd kbd-xs\">Tab</kbd>\r\n            keys.</p></div> <form method=\"dialog\" class=\"modal-backdrop\"><button>close</button></form></dialog><!--<Index>--></svelte-retag></coreproject-specific-search-modal>\n\n                            <coreproject-sidebar><svelte-retag><div class=\"mt-[2.8125vw] flex flex-col items-center gap-[0.75vw]\"><div class=\"rounded-[0.75vw] bg-white/10 absolute opacity-0 duration-200 ease-in-out\"></div> <button type=\"button\" class=\"btn h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 relative !bg-accent before:absolute before:-left-[0.15vw] before:z-10 before:h-[1.25vw] before:w-[0.25vw] before:rounded-full before:bg-primary\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-secondary\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7.99961 16V12C7.99961 11.4477 8.44733 11 8.99961 11H10.9996C11.5519 11 11.9996 11.4477 11.9996 12V16C11.9996 16.55 12.4496 17 12.9996 17H15.9996C16.5496 17 16.9996 16.55 16.9996 16V9.99997C16.9996 9.44769 17.4473 8.99997 17.9996 8.99997H18.6996C19.1596 8.99997 19.3796 8.42997 19.0296 8.12997L10.6696 0.599971C10.2896 0.259971 9.70961 0.259971 9.32961 0.599971L0.96961 8.12997C0.62961 8.42997 0.83961 8.99997 1.29961 8.99997H1.99961C2.55189 8.99997 2.99961 9.44769 2.99961 9.99997V16C2.99961 16.55 3.44961 17 3.99961 17H6.99961C7.54961 17 7.99961 16.55 7.99961 16Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM5.65317 13.0185C5.26027 13.864 6.13598 14.7397 6.98146 14.3468L11.3472 12.318C11.7752 12.1191 12.1191 11.7752 12.318 11.3472L14.3468 6.98146C14.7397 6.13599 13.864 5.26026 13.0185 5.65317L8.65283 7.68197C8.22479 7.88089 7.88089 8.22479 7.68197 8.65283L5.65317 13.0185ZM10 8.9C10.61 8.9 11.1 9.39 11.1 10C11.1 10.61 10.61 11.1 10 11.1C9.39 11.1 8.9 10.61 8.9 10C8.9 9.39 9.39 8.9 10 8.9Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">explore</span></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8 6.00067L21 6.00139M8 12.0007L21 12.0015M8 18.0007L21 18.0015M3.5 6H3.51M3.5 12H3.51M3.5 18H3.51M4 6C4 6.27614 3.77614 6.5 3.5 6.5C3.22386 6.5 3 6.27614 3 6C3 5.72386 3.22386 5.5 3.5 5.5C3.77614 5.5 4 5.72386 4 6ZM4 12C4 12.2761 3.77614 12.5 3.5 12.5C3.22386 12.5 3 12.2761 3 12C3 11.7239 3.22386 11.5 3.5 11.5C3.77614 11.5 4 11.7239 4 12ZM4 18C4 18.2761 3.77614 18.5 3.5 18.5C3.22386 18.5 3 18.2761 3 18C3 17.7239 3.22386 17.5 3.5 17.5C3.77614 17.5 4 17.7239 4 18Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">list</span></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.667 2.49998H15.3337C15.0575 2.49998 14.8337 2.27612 14.8337 1.99998V1.66665C14.8337 1.20831 14.4587 0.833313 14.0003 0.833313C13.542 0.833313 13.167 1.20831 13.167 1.66665V1.99998C13.167 2.27612 12.9431 2.49998 12.667 2.49998H5.33366C5.05752 2.49998 4.83366 2.27612 4.83366 1.99998V1.66665C4.83366 1.20831 4.45866 0.833313 4.00033 0.833313C3.54199 0.833313 3.16699 1.20831 3.16699 1.66665V1.99998C3.16699 2.27612 2.94313 2.49998 2.66699 2.49998H2.33366C1.41699 2.49998 0.666992 3.24998 0.666992 4.16665V17.5C0.666992 18.4166 1.41699 19.1666 2.33366 19.1666H15.667C16.5837 19.1666 17.3337 18.4166 17.3337 17.5V4.16665C17.3337 3.24998 16.5837 2.49998 15.667 2.49998ZM14.8337 17.5H3.16699C2.70866 17.5 2.33366 17.125 2.33366 16.6666V6.66665H15.667V16.6666C15.667 17.125 15.292 17.5 14.8337 17.5Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">schedule</span></div></div> </button><button type=\"button\" class=\"btn relative h-[4vw] w-[4vw] rounded-[0.75vw] border-none p-0 !bg-transparent\"><div class=\"inline-grid\"><div class=\"absolute inset-0 flex flex-col items-center justify-center gap-[0.5vw]\"><icon class=\"!text-white\"><svg class=\"w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.667 4.00002H15.3337C15.0575 4.00002 14.8337 4.22388 14.8337 4.50002V10.6667C14.8337 11.125 14.4587 11.5 14.0003 11.5H4.50033C4.22418 11.5 4.00033 11.7239 4.00033 12V12.3334C4.00033 13.25 4.75033 14 5.66699 14H13.7932C13.9258 14 14.053 14.0527 14.1468 14.1465L16.4801 16.4798C16.7951 16.7948 17.3337 16.5717 17.3337 16.1262V5.66669C17.3337 4.75002 16.5837 4.00002 15.667 4.00002ZM13.167 8.16669V2.33335C13.167 1.41669 12.417 0.666687 11.5003 0.666687H2.33366C1.41699 0.666687 0.666992 1.41669 0.666992 2.33335V11.9596C0.666992 12.405 1.20556 12.6281 1.52055 12.3131L3.85388 9.9798C3.94765 9.88603 4.07482 9.83335 4.20743 9.83335H11.5003C12.417 9.83335 13.167 9.08335 13.167 8.16669Z\" fill=\"currentColor\"></path></svg><!--<Index>--></icon> <span class=\"text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">forum</span></div></div> </button></div><!--<VercelHover>--><!--<Index>--></svelte-retag></coreproject-sidebar>\n\n                        </div>\n                        <div class=\"flex flex-col items-center\">\n                            <button type=\"button\" class=\"btn !bg-transparent border-none w-[4vw] h-[4vw] flex-col justify-center gap-[0.45vw] p-0 text-sm\">\n                                <coreproject-icon-settings class=\"w-[1.25vw] text-white\"><svelte-retag><svg class=\"w-[1.25vw] text-white\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n                                <span class=\"!m-0 text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">\n                                    settings\n                                </span>\n                            </button>\n                            <button type=\"button\" class=\"btn !bg-transparent border-none w-[4vw] h-[4vw] flex-col justify-center gap-[0.45vw] p-0 text-sm\">\n                                <coreproject-icon-misc class=\"w-[1.25vw] text-white\"><svelte-retag><svg class=\"w-[1.25vw] text-white\" style=\"\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.00033 0.666656C4.40033 0.666656 0.666992 4.39999 0.666992 8.99999C0.666992 13.6 4.40033 17.3333 9.00033 17.3333C13.6003 17.3333 17.3337 13.6 17.3337 8.99999C17.3337 4.39999 13.6003 0.666656 9.00033 0.666656ZM9.00033 15.6667C5.32533 15.6667 2.33366 12.675 2.33366 8.99999C2.33366 5.32499 5.32533 2.33332 9.00033 2.33332C12.6753 2.33332 15.667 5.32499 15.667 8.99999C15.667 12.675 12.6753 15.6667 9.00033 15.6667ZM8.16699 12.3333H9.83366V14H8.16699V12.3333ZM9.50866 4.03332C7.79199 3.78332 6.27533 4.84166 5.81699 6.35832C5.66699 6.84166 6.03366 7.33332 6.54199 7.33332H6.70866C7.05033 7.33332 7.32533 7.09166 7.44199 6.77499C7.70866 6.03332 8.50033 5.52499 9.35866 5.70832C10.1503 5.87499 10.7337 6.64999 10.667 7.45832C10.5837 8.57499 9.31699 8.81666 8.62533 9.85832C8.62533 9.86666 8.61699 9.86666 8.61699 9.87499C8.60866 9.89166 8.60033 9.89999 8.59199 9.91666C8.51699 10.0417 8.44199 10.1833 8.38366 10.3333C8.37533 10.3583 8.35866 10.375 8.35033 10.4C8.34199 10.4167 8.34199 10.4333 8.33366 10.4583C8.23366 10.7417 8.16699 11.0833 8.16699 11.5H9.83366C9.83366 11.15 9.92533 10.8583 10.067 10.6083C10.0837 10.5833 10.092 10.5583 10.1087 10.5333C10.1753 10.4167 10.2587 10.3083 10.342 10.2083C10.3503 10.2 10.3587 10.1833 10.367 10.175C10.4503 10.075 10.542 9.98332 10.642 9.89166C11.442 9.13332 12.5253 8.51666 12.3003 6.92499C12.1003 5.47499 10.9587 4.24999 9.50866 4.03332Z\" fill=\"white\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-misc>\n                                <span class=\"!m-0 text-[0.75vw] font-semibold capitalize leading-[1.05vw]\">\n                                    misc.\n                                </span>\n                            </button>\n                        </div>\n                    </div>\n                </aside>\n                <div id=\"page\" class=\"flex-1 overflow-x-hidden flex flex-col\" style=\"scrollbar-gutter: auto;\"><home-container class=\"mt-16 block md:mt-0 md:p-[1.25vw] md:pr-[3.75vw]\" _=\"init call window.timer.start() end\">\n    <hero-section class=\"flex flex-col justify-between md:flex-row\">\n        <latest-animes-slider class=\"relative h-96 w-full md:h-[26vw] md:w-[42vw]\">\n            <slider class=\"h-full duration-300 flex md:rounded-t-[0.875vw]\" _=\"\n                   on fetch:beforeRequest(headers)\n                   add .bg-neutral to me\n                   add .backdrop-blur-sm to next <backdrop/>\n                   then call window.timer.reset()\n\n                   on fetch:afterResponse\n                   wait 300ms\n                   remove .bg-neutral from me\n                   send hyperscript:change_active(index:current_index) to .slider-brick\n                   then remove .backdrop-blur-sm from next <backdrop/>\n\n                   on hyperscript:slide_next\n                   fetch `/anime/_slider/${next_index}`\n                   put result into my innerHTML\n                   call _hyperscript.processNode(my)\n                   end\n\n                   on hyperscript:slide_prev\n                   fetch `/anime/_slider/${previous_index}`\n                   put result into my innerHTML\n                   call _hyperscript.processNode(my)\n                   end\n\n                   on hyperscript:slide_to(index)\n                   fetch `/anime/_slider/${index}`\n                   put result into my innerHTML\n                   call _hyperscript.processNode(my)\n                   end\n\n                   init\n                   set global touch_start_x to 0\n                   set global touch_end_x to 0\n                   get global current_index\n                   if not current_index\n                   set global current_index to 0\n                   end\n                   fetch `/anime/_slider/${current_index}`\n                   put result into my innerHTML\n                   call _hyperscript.processNode(my)\n                   end\n\n                   on mouseenter call window.timer.pause() end\n                   on mouseleave call window.timer.start() end\n\n                   on touchstart set global touch_start_x to event.changedTouches[0].screenX end\n                   on touchend\n                   set global touch_end_x to event.changedTouches[0].screenX\n                   send hyperscript:check_direction to me\n                   end\n\n                   on hyperscript:check_direction\n                   if touch_end_x < touch_start_x\n                   send hyperscript:slide_prev to me\n                   else send hyperscript:slide_next to me\n                   end\n                  \"><div _=\"\n       init\n       set global next_index to '1'\n       set global previous_index to '2'\n       set global current_index to '0'\n       end\n      \" class=\"absolute h-full w-full object-cover object-center md:rounded-t-[0.875vw]\">\n    <img class=\"absolute h-full w-full object-cover object-center md:rounded-t-[0.875vw]\" src=\"https://staticg.sportskeeda.com/editor/2023/04/95453-16812287437122-1920.jpg?w=840\" alt=\"\" style=\"\" loading=\"lazy\">\n</div>\n<gradient-overlay class=\"absolute inset-0 bg-gradient-to-t from-secondary/90 to-secondary/50 md:to-surface-900/25\"></gradient-overlay>\n<gradient-overlay class=\"absolute inset-0 hidden bg-gradient-to-r from-surface-900 to-surface-900/25 md:flex md:from-surface-900/50\"></gradient-overlay>\n<anime-details class=\"absolute bottom-7 left-7 flex flex-col md:bottom-0 md:left-0 md:px-[3.75vw] md:py-[2.625vw]\">\n    <anime-name class=\"text-white text-3xl font-bold md:text-[2vw] md:leading-[2.375vw]\">\n        Jujutsu Kaisen\n    </anime-name>\n    <japanese-name class=\"text-base font-semibold text-white/90 md:hidden md:text-[2vw] md:leading-[2.375vw]\">\n        Sorcery Fight\n    </japanese-name>\n    <anime-infos class=\"flex flex-wrap items-center gap-2 pt-4 text-xs font-semibold text-white/90 md:gap-[0.65vw] md:pt-[0.5vw] md:text-[0.9375vw]\">\n        <span class=\"leading-[1.125vw]\"> TV </span>\n        <coreproject-icon-dot class=\"w-1 opacity-75 md:w-[0.25vw]\"><svelte-retag><svg class=\"w-1 opacity-75 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--></svelte-retag></coreproject-icon-dot>\n        <span class=\"leading-[1.125vw]\"> 24 eps </span>\n        <coreproject-icon-dot class=\"w-1 opacity-75 md:w-[0.25vw]\"><svelte-retag><svg class=\"w-1 opacity-75 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--></svelte-retag></coreproject-icon-dot>\n        <span class=\"leading-[1.125vw]\"> Completed </span>\n        <coreproject-icon-dot class=\"w-1 opacity-75 md:w-[0.25vw]\"><svelte-retag><svg class=\"w-1 opacity-75 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--></svelte-retag></coreproject-icon-dot>\n        <span class=\"capitalize leading-[1.125vw]\">\n            Autumn 2014\n        </span>\n        <coreproject-icon-dot class=\"w-1 opacity-75 md:w-[0.25vw]\"><svelte-retag><svg class=\"w-1 opacity-75 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--></svelte-retag></coreproject-icon-dot>\n        <span class=\"leading-[1.125vw] capitalize\"> mappa </span>\n    </anime-infos>\n    <anime-genres class=\"flex gap-2 pb-2 pt-3 md:gap-[0.5vw] md:pt-[0.5vw]\">\n        \n            <span class=\"rounded-lg bg-secondary p-2 px-3 text-xs md:rounded-[0.35vw] md:px-[0.75vw] md:py-[0.4vw] md:text-[0.75vw] md:font-semibold capitalize\">\n                sci-fi\n            </span>\n        \n            <span class=\"rounded-lg bg-secondary p-2 px-3 text-xs md:rounded-[0.35vw] md:px-[0.75vw] md:py-[0.4vw] md:text-[0.75vw] md:font-semibold capitalize\">\n                action\n            </span>\n        \n            <span class=\"rounded-lg bg-secondary p-2 px-3 text-xs md:rounded-[0.35vw] md:px-[0.75vw] md:py-[0.4vw] md:text-[0.75vw] md:font-semibold capitalize\">\n                echhi\n            </span>\n        \n    </anime-genres>\n    <coreproject-scroll-area gradient_mask=\"true\" class=\"text-xs font-medium leading-4 text-surface-200 md:text-[0.85vw] md:leading-[1.1vw]\" parent_class=\"max-h-16 md:max-h-[6vw] md:mt-[0.5vw]\" offset_scrollbar=\"true\"><svelte-retag><div role=\"contentinfo\" class=\"max-h-16 md:max-h-[6vw] md:mt-[0.5vw] pr-3 md:pr-[0.75vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"text-xs font-medium leading-4 text-surface-200 md:text-[0.85vw] md:leading-[1.1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> \n        Idly indulging in baseless paranormal activities with the Occult Club, high schooler Yuuji Itadori spends his days at either the clubroom or the hospital, where he visits his bedridden grandfather. However, this leisurely lifestyle soon takes a turn for the strange when he unknowingly encounters a cursed item. Triggering a chain of supernatural occurrences, Yuuji finds himself suddenly thrust into the world of Curses—dreadful beings formed from human malice and negativity—after swallowing the said item, revealed to be a finger belonging to the demon Sukuna Ryoumen, the \"King of Curses.\n     <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--></svelte-retag></coreproject-scroll-area>\n\n    <options class=\"mb-2 mt-5 flex gap-3 md:mb-0 md:mt-[1.5vw] md:gap-[1vw]\">\n        <button class=\"btn btn-warning flex h-14 w-24 justify-center gap-1 rounded-xl text-base text-secondary font-bold md:h-[3.125vw] md:w-[5.4375vw] md:rounded-[0.625vw] md:text-[0.875vw] md:gap-[0.5vw]\">\n            <svg class=\"w-4 text-surface-900 md:w-[1vw]\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path>\n            </svg>\n            <span>Ep 1</span>\n        </button>\n        <a href=\"/anime/mal/40748\">\n            <button class=\"btn btn-secondary flex h-14 w-28 items-center justify-center rounded-xl bg-surface-900 text-base font-semibold text-surface-50 md:h-[3.125vw] md:w-[7.5vw] md:gap-[0.5vw] md:rounded-[0.5vw] md:text-[0.875vw] md:font-bold\">\n                <svg class=\"w-5 text-surface-50 md:w-[1.25vw]\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                    <path d=\"M15 27.5C21.9036 27.5 27.5 21.9036 27.5 15C27.5 8.09644 21.9036 2.5 15 2.5C8.09644 2.5 2.5 8.09644 2.5 15C2.5 21.9036 8.09644 27.5 15 27.5Z\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n                    <path d=\"M15 20V15\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n                    <path d=\"M15 10H15.0125\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n                </svg>\n                <span>Details</span>\n            </button>\n        </a>\n        <button class=\"btn btn-secondary h-14 w-14 rounded-xl bg-surface-900 text-[3vw] font-bold text-surface-50 md:h-[3.125vw] md:w-[3.125vw] md:rounded-[0.5vw] md:text-[0.875vw]\">\n            <svg viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" class=\"w-4 text-surface-50 md:w-[1.25vw]\">\n                <path d=\"M9 15H15.75\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n                <path d=\"M12.375 2.62517C12.6734 2.3268 13.078 2.15918 13.5 2.15918C13.7089 2.15918 13.9158 2.20033 14.1088 2.28029C14.3019 2.36024 14.4773 2.47743 14.625 2.62517C14.7727 2.77291 14.8899 2.9483 14.9699 3.14132C15.0498 3.33435 15.091 3.54124 15.091 3.75017C15.091 3.9591 15.0498 4.16599 14.9699 4.35902C14.8899 4.55204 14.7727 4.72743 14.625 4.87517L5.25 14.2502L2.25 15.0002L3 12.0002L12.375 2.62517Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n            </svg>\n        </button>\n    </options>\n</anime-details>\n</slider>\n            <backdrop class=\"absolute inset-0 bg-transparent duration-300 md:rounded-t-[0.875vw] pointer-events-none\"></backdrop>\n            <slide-progress class=\"flex w-full flex-col\">\n                <progress-bar class=\"h-[0.2rem] md:h-[0.145vw] bg-warning duration-300 ease-linear\" _=\"\n                       on hyperscript:timer_updated(value)\n                       set my *width to value%\n                      \" style=\"width: 8%;\"></progress-bar>\n                <animes-boxes class=\"hidden w-full grid-cols-6 gap-[0.9375vw] md:mt-[1.25vw] md:grid\">\n                    \n                        <button class=\"slider-brick col-span-1 h-[0.625vw] w-full rounded-[0.1875vw] border-[0.15vw] border-secondary-300 transition duration-300 hover:border-surface-50/50 bg-warning\" _=\"\n                               on click\n                               send hyperscript:slide_to(index:0) to <slider/>\n                               end\n\n                               on hyperscript:change_active(index)\n                               if 0 is equal to index\n                               add .bg-warning to me\n                               else remove .bg-warning from me\n                               end\n                              \"></button>\n                    \n                        <button class=\"slider-brick col-span-1 h-[0.625vw] w-full rounded-[0.1875vw] border-[0.15vw] border-secondary-300 transition duration-300 hover:border-surface-50/50\" _=\"\n                               on click\n                               send hyperscript:slide_to(index:1) to <slider/>\n                               end\n\n                               on hyperscript:change_active(index)\n                               if 1 is equal to index\n                               add .bg-warning to me\n                               else remove .bg-warning from me\n                               end\n                              \"></button>\n                    \n                        <button class=\"slider-brick col-span-1 h-[0.625vw] w-full rounded-[0.1875vw] border-[0.15vw] border-secondary-300 transition duration-300 hover:border-surface-50/50\" _=\"\n                               on click\n                               send hyperscript:slide_to(index:2) to <slider/>\n                               end\n\n                               on hyperscript:change_active(index)\n                               if 2 is equal to index\n                               add .bg-warning to me\n                               else remove .bg-warning from me\n                               end\n                              \"></button>\n                    \n                </animes-boxes>\n            </slide-progress>\n            <button class=\"btn btn-primary text-accent min-h-max p-0 absolute -left-[1vw] top-[12vw] z-20 hidden h-[2.25vw] w-[2.25vw] rounded-[0.375vw] md:flex\" _=\"on click send hyperscript:slide_prev to <slider/>\">\n                <coreproject-icon-chevron class=\"w-[1.25vw] rotate-45\"><svelte-retag><svg class=\"w-[1.25vw] rotate-45\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"3.5\" d=\"M6 9L12 15L18 9\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-chevron>\n            </button>\n            <button class=\"btn btn-primary text-accent min-h-max p-0 absolute -right-[1vw] top-[12vw] z-20 hidden h-[2.25vw] w-[2.25vw] rounded-[0.375vw] bg-secondary-800 md:flex\" _=\"on click send hyperscript:slide_next to <slider/>\">\n                <coreproject-icon-chevron class=\"w-[1.25vw] -rotate-45\"><svelte-retag><svg class=\"w-[1.25vw] -rotate-45\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"3.5\" d=\"M6 9L12 15L18 9\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-chevron>\n\n            </button>\n        </latest-animes-slider>\n        <latest-episodes class=\"hidden w-[21.5625vw] md:block\">\n            <section-header class=\"flex items-center justify-between pr-[0.75vw]\">\n                <header-title class=\"flex items-center gap-[0.625vw]\">\n                    <span class=\"text-[1.25vw] font-bold\">Latest Episodes</span>\n                    <button class=\"btn btn-secondary hidden rounded-[0.1875vw] p-0 md:flex md:h-[1.5vw] md:w-[1.5vw] min-h-full\">\n                        <coreproject-icon-settings class=\"w-[0.9vw] opacity-75\"><svelte-retag><svg class=\"w-[0.9vw] opacity-75\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n\n                    </button>\n                </header-title>\n                <button class=\"btn btn-neutral rounded-[0.3vw] text-[0.9vw] font-semibold p-0 min-h-max md:h-[2vw] md:px-[0.5vw]\">\n                    <span>Full List</span>\n                    <coreproject-icon-arrow-up-right class=\"w-[1vw]\"><svelte-retag><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.66699 11.3333L11.3337 4.66666\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M4.66699 4.66666H11.3337V11.3333\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-arrow-up-right>\n                </button>\n            </section-header>\n            <coreproject-specific-latest-episodes episodes=\"[{&quot;id&quot;: 1, &quot;name&quot;: &quot;SpyxFamily&quot;, &quot;cover&quot;: &quot;https://m.media-amazon.com/images/M/MV5BOTcwZTkwMjctNjEyNS00ZjMxLWIyZjctZTljOTUwNzY4ZjczXkEyXkFqcGdeQXVyMTAyNjg4NjE0._V1_QL75_UX500_CR0,0,500,281_.jpg&quot;, &quot;episode_number&quot;: 6, &quot;release_date&quot;: &quot;2023-06-28T10:30:00.000Z&quot;, &quot;synopsis&quot;: &quot;It is the Taisho Period in Japan. Tanjiro, a kindhearted boy who sells charcoal for a\\n                      living, finds his family slaughtered by a demon. To make matters worse, his younger sister\\n                      Nezuko, the sole survivor, has been transformed into a demon herself. Though devastated by this grim reality, Tanjiro resolves to become a \\u201cdemon slayer\\u201d so that he can turn his\\n                      sister back into a human, and kill the demon that massacred his family.&quot;}, {&quot;id&quot;: 2, &quot;name&quot;: &quot;Kaguya-sama: Love Is War&quot;, &quot;cover&quot;: &quot;https://images.justwatch.com/backdrop/104140955/s640/season-1.%7Bformat%7D&quot;, &quot;episode_number&quot;: 5, &quot;release_date&quot;: &quot;2023-06-22T10:30:00.000Z&quot;, &quot;synopsis&quot;: &quot;It is the Taisho Period in Japan. Tanjiro, a kindhearted boy who sells charcoal for a\\n                      living, finds his family slaughtered by a demon. To make matters worse, his younger sister\\n                      Nezuko, the sole survivor, has been transformed into a demon herself. Though devastated by this grim reality, Tanjiro resolves to become a \\u201cdemon slayer\\u201d so that he can turn his\\n                      sister back into a human, and kill the demon that massacred his family.&quot;}, {&quot;id&quot;: 3, &quot;name&quot;: &quot;Aharen-san wa Hakaraenai&quot;, &quot;cover&quot;: &quot;https://lostinanime.com/wp-content/uploads/2022/06/Aharen-san-wa-Hakarenai-12-51.jpg&quot;, &quot;episode_number&quot;: 9, &quot;release_date&quot;: &quot;2023-06-18T11:30:00.000Z&quot;, &quot;synopsis&quot;: &quot;It is the Taisho Period in Japan. Tanjiro, a kindhearted boy who sells charcoal for a\\n                      living, finds his family slaughtered by a demon. To make matters worse, his younger sister\\n                      Nezuko, the sole survivor, has been transformed into a demon herself. Though devastated by this grim reality, Tanjiro resolves to become a \\u201cdemon slayer\\u201d so that he can turn his\\n                      sister back into a human, and kill the demon that massacred his family.&quot;}, {&quot;id&quot;: 4, &quot;name&quot;: &quot;Summer time Rendering&quot;, &quot;cover&quot;: &quot;https://m.media-amazon.com/images/M/MV5BZjZkYTdlZGMtOGQyYy00MDlkLTkzZTEtZTI2OGIyM2VlOWM4XkEyXkFqcGdeQXVyMTA0NDQ4NTcz._V1_QL75_UX500_CR0,0,500,281_.jpg&quot;, &quot;episode_number&quot;: 12, &quot;release_date&quot;: &quot;2023-06-10T12:30:00.000Z&quot;, &quot;synopsis&quot;: &quot;It is the Taisho Period in Japan. Tanjiro, a kindhearted boy who sells charcoal for a\\n                      living, finds his family slaughtered by a demon. To make matters worse, his younger sister\\n                      Nezuko, the sole survivor, has been transformed into a demon herself. Though devastated by this grim reality, Tanjiro resolves to become a \\u201cdemon slayer\\u201d so that he can turn his\\n                      sister back into a human, and kill the demon that massacred his family.&quot;}, {&quot;id&quot;: 5, &quot;name&quot;: &quot;Jujutsu Kaisen&quot;, &quot;cover&quot;: &quot;https://cdn.oneesports.gg/cdn-data/2023/07/Anime_JujutsuKaisen_Season2_GojoSatoru_GetoSuguru_GegeAkutami-450x253.jpg&quot;, &quot;episode_number&quot;: 27, &quot;release_date&quot;: &quot;2023-06-03T12:30:00.000Z&quot;, &quot;synopsis&quot;: &quot;It is the Taisho Period in Japan. Tanjiro, a kindhearted boy who sells charcoal for a\\n                      living, finds his family slaughtered by a demon. To make matters worse, his younger sister\\n                      Nezuko, the sole survivor, has been transformed into a demon herself. Though devastated by this grim reality, Tanjiro resolves to become a \\u201cdemon slayer\\u201d so that he can turn his\\n                      sister back into a human, and kill the demon that massacred his family.&quot;}]\" data-svelte-retag-hydratable=\"\"><svelte-retag><div role=\"contentinfo\" class=\"mt-[1vw] max-h-[23vw] snap-y smooth-scroll snap-mandatory pr-3 md:pr-[0.75vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"flex w-full flex-col gap-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> <div role=\"group\" class=\"group relative h-[5vw] shrink-0 snap-center duration-300 ease-in-out hover:h-[16vw]\"><img src=\"https://m.media-amazon.com/images/M/MV5BOTcwZTkwMjctNjEyNS00ZjMxLWIyZjctZTljOTUwNzY4ZjczXkEyXkFqcGdeQXVyMTAyNjg4NjE0._V1_QL75_UX500_CR0,0,500,281_.jpg\" alt=\"\" class=\"absolute h-full w-full rounded-[0.75vw] object-cover object-center\"> <div class=\"gradient absolute inset-0 bg-gradient-to-t from-secondary/75 to-transparent\"></div> <div class=\"gradient absolute inset-0 bg-gradient-to-r from-secondary/50 to-transparent\"></div> <div class=\"absolute inset-0 flex items-start justify-between p-[1.3125vw]\"><div class=\"flex flex-col gap-[0.25vw]\"><div class=\"text-[1vw] font-semibold leading-[1.1875vw] text-white\">SpyxFamily</div> <div class=\"flex items-center gap-[0.35vw] text-[0.8vw] text-accent\"><span class=\"font-semibold\">Ep 06</span> <span>aired 6 months ago</span></div></div> <a href=\"/mal/1/episode/6\" class=\"btn btn-warning h-[2.5vw] min-h-max w-[2.5vw] rounded-full p-0 transition-colors duration-300 group-hover:btn-accent\"><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--></a></div> </div><!--<Episode>--><div role=\"group\" class=\"group relative h-[5vw] shrink-0 snap-center duration-300 ease-in-out hover:h-[16vw]\"><img src=\"https://images.justwatch.com/backdrop/104140955/s640/season-1.%7Bformat%7D\" alt=\"\" class=\"absolute h-full w-full rounded-[0.75vw] object-cover object-center\"> <div class=\"gradient absolute inset-0 bg-gradient-to-t from-secondary/75 to-transparent\"></div> <div class=\"gradient absolute inset-0 bg-gradient-to-r from-secondary/50 to-transparent\"></div> <div class=\"absolute inset-0 flex items-start justify-between p-[1.3125vw]\"><div class=\"flex flex-col gap-[0.25vw]\"><div class=\"text-[1vw] font-semibold leading-[1.1875vw] text-white\">Kaguya-sama: Love Is War</div> <div class=\"flex items-center gap-[0.35vw] text-[0.8vw] text-accent\"><span class=\"font-semibold\">Ep 05</span> <span>aired 6 months ago</span></div></div> <a href=\"/mal/2/episode/5\" class=\"btn btn-warning h-[2.5vw] min-h-max w-[2.5vw] rounded-full p-0 transition-colors duration-300 group-hover:btn-accent\"><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--></a></div> </div><!--<Episode>--><div role=\"group\" class=\"group relative h-[5vw] shrink-0 snap-center duration-300 ease-in-out hover:h-[16vw]\"><img src=\"https://lostinanime.com/wp-content/uploads/2022/06/Aharen-san-wa-Hakarenai-12-51.jpg\" alt=\"\" class=\"absolute h-full w-full rounded-[0.75vw] object-cover object-center\"> <div class=\"gradient absolute inset-0 bg-gradient-to-t from-secondary/75 to-transparent\"></div> <div class=\"gradient absolute inset-0 bg-gradient-to-r from-secondary/50 to-transparent\"></div> <div class=\"absolute inset-0 flex items-start justify-between p-[1.3125vw]\"><div class=\"flex flex-col gap-[0.25vw]\"><div class=\"text-[1vw] font-semibold leading-[1.1875vw] text-white\">Aharen-san wa Hakaraenai</div> <div class=\"flex items-center gap-[0.35vw] text-[0.8vw] text-accent\"><span class=\"font-semibold\">Ep 09</span> <span>aired 6 months ago</span></div></div> <a href=\"/mal/3/episode/9\" class=\"btn btn-warning h-[2.5vw] min-h-max w-[2.5vw] rounded-full p-0 transition-colors duration-300 group-hover:btn-accent\"><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--></a></div> </div><!--<Episode>--><div role=\"group\" class=\"group relative h-[5vw] shrink-0 snap-center duration-300 ease-in-out hover:h-[16vw]\"><img src=\"https://m.media-amazon.com/images/M/MV5BZjZkYTdlZGMtOGQyYy00MDlkLTkzZTEtZTI2OGIyM2VlOWM4XkEyXkFqcGdeQXVyMTA0NDQ4NTcz._V1_QL75_UX500_CR0,0,500,281_.jpg\" alt=\"\" class=\"absolute h-full w-full rounded-[0.75vw] object-cover object-center\"> <div class=\"gradient absolute inset-0 bg-gradient-to-t from-secondary/75 to-transparent\"></div> <div class=\"gradient absolute inset-0 bg-gradient-to-r from-secondary/50 to-transparent\"></div> <div class=\"absolute inset-0 flex items-start justify-between p-[1.3125vw]\"><div class=\"flex flex-col gap-[0.25vw]\"><div class=\"text-[1vw] font-semibold leading-[1.1875vw] text-white\">Summer time Rendering</div> <div class=\"flex items-center gap-[0.35vw] text-[0.8vw] text-accent\"><span class=\"font-semibold\">Ep 12</span> <span>aired 7 months ago</span></div></div> <a href=\"/mal/4/episode/12\" class=\"btn btn-warning h-[2.5vw] min-h-max w-[2.5vw] rounded-full p-0 transition-colors duration-300 group-hover:btn-accent\"><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--></a></div> </div><!--<Episode>--><div role=\"group\" class=\"group relative h-[5vw] shrink-0 snap-center duration-300 ease-in-out hover:h-[16vw]\"><img src=\"https://cdn.oneesports.gg/cdn-data/2023/07/Anime_JujutsuKaisen_Season2_GojoSatoru_GetoSuguru_GegeAkutami-450x253.jpg\" alt=\"\" class=\"absolute h-full w-full rounded-[0.75vw] object-cover object-center\"> <div class=\"gradient absolute inset-0 bg-gradient-to-t from-secondary/75 to-transparent\"></div> <div class=\"gradient absolute inset-0 bg-gradient-to-r from-secondary/50 to-transparent\"></div> <div class=\"absolute inset-0 flex items-start justify-between p-[1.3125vw]\"><div class=\"flex flex-col gap-[0.25vw]\"><div class=\"text-[1vw] font-semibold leading-[1.1875vw] text-white\">Jujutsu Kaisen</div> <div class=\"flex items-center gap-[0.35vw] text-[0.8vw] text-accent\"><span class=\"font-semibold\">Ep 27</span> <span>aired 7 months ago</span></div></div> <a href=\"/mal/5/episode/27\" class=\"btn btn-warning h-[2.5vw] min-h-max w-[2.5vw] rounded-full p-0 transition-colors duration-300 group-hover:btn-accent\"><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--></a></div> </div><!--<Episode>--> <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--><!--<Index>--></svelte-retag></coreproject-specific-latest-episodes>\n            <section-bottom class=\"mt-[0.75vw] flex items-start justify-between gap-[2vw] pr-[0.75vw]\">\n                <span class=\"text-[0.75vw] font-semibold md:leading-[1.25vw]\">showing recently aired episodes from your Anime List</span>\n                <button class=\"btn btn-secondary p-0 text-[0.75vw] font-semibold text-warning\"> Change to All </button>\n            </section-bottom>\n        </latest-episodes>\n        <navigation-card class=\"relative mt-[2.75vw] hidden h-[24.5vw] w-[16.625vw] md:block\">\n            <div class=\"absolute h-full w-full rounded-[0.875vw] object-cover object-center\">\n                <img class=\"absolute h-full w-full rounded-[0.875vw] object-cover object-center\" src=\"https://i.pinimg.com/originals/b7/25/12/b725125aaebafbcbf2fb3886a55d2d6f.jpg\" alt=\"\" style=\"\" loading=\"lazy\">\n            </div>\n            <gradient class=\"absolute inset-0 bg-gradient-to-t from-secondary from-[1%] to-secondary/25\"></gradient>\n            <gradient class=\"absolute inset-0 bg-gradient-to-r from-secondary/50 to-secondary/25\"></gradient>\n            <navigation-content class=\"absolute inset-0 flex flex-col justify-between px-[1.875vw] pt-[2vw] text-accent\">\n                <section-header class=\"flex flex-col gap-[0.2w]\">\n                    <span class=\"text-[1.5vw] font-bold leading-[1vw]\">Welcome</span>\n                    <span class=\"text-[0.875vw] font-semibold leading-[2.5vw]\">Jump quickly into</span>\n                </section-header>\n                <navigation-left-buttons class=\"mt-[1vw] flex flex-col gap-[0.75vw]\">\n                    <div class=\"flex items-center gap-[1vw]\">\n                        <button class=\"btn btn-warning min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] p-0\">\n                            <coreproject-icon-chat class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.667 4.00002H15.3337C15.0575 4.00002 14.8337 4.22388 14.8337 4.50002V10.6667C14.8337 11.125 14.4587 11.5 14.0003 11.5H4.50033C4.22418 11.5 4.00033 11.7239 4.00033 12V12.3334C4.00033 13.25 4.75033 14 5.66699 14H13.7932C13.9258 14 14.053 14.0527 14.1468 14.1465L16.4801 16.4798C16.7951 16.7948 17.3337 16.5717 17.3337 16.1262V5.66669C17.3337 4.75002 16.5837 4.00002 15.667 4.00002ZM13.167 8.16669V2.33335C13.167 1.41669 12.417 0.666687 11.5003 0.666687H2.33366C1.41699 0.666687 0.666992 1.41669 0.666992 2.33335V11.9596C0.666992 12.405 1.20556 12.6281 1.52055 12.3131L3.85388 9.9798C3.94765 9.88603 4.07482 9.83335 4.20743 9.83335H11.5003C12.417 9.83335 13.167 9.08335 13.167 8.16669Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-chat>\n                        </button>\n                        <span class=\"text-[1vw] font-bold\">Forums</span>\n                    </div>\n                    <div class=\"flex items-center gap-[1vw]\">\n                        <button class=\"btn btn-warning min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] bg-surface-50 p-0\">\n                            <coreproject-icon-recent class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.83301 0.5C5.85939 0.5 2.60682 3.59134 2.34942 7.4999C2.33128 7.77545 2.10915 8 1.83301 8H1.04225C0.5965 8 0.373554 8.5392 0.689144 8.854L2.81323 10.9728C3.00839 11.1674 3.32429 11.1674 3.51945 10.9728L5.64354 8.854C5.95913 8.53919 5.73618 8 5.29043 8H4.49967C4.22353 8 3.99744 7.77536 4.02072 7.50021C4.27371 4.50975 6.77638 2.16667 9.83301 2.16667C13.058 2.16667 15.6663 4.775 15.6663 8C15.6663 11.225 13.058 13.8333 9.83301 13.8333C8.4051 13.8333 7.09543 13.3144 6.08478 12.4574C5.87357 12.2783 5.5572 12.2758 5.36139 12.4716L4.88656 12.9464C4.6913 13.1417 4.69026 13.4597 4.8979 13.6417C6.21687 14.7981 7.93806 15.5 9.83301 15.5C13.9747 15.5 17.333 12.1417 17.333 8C17.333 3.85833 13.9747 0.5 9.83301 0.5ZM9.49967 4.66667C9.22353 4.66667 8.99967 4.89052 8.99967 5.16667V8.54852C8.99967 8.72508 9.09279 8.88855 9.24466 8.9786L12.114 10.6799C12.3504 10.8201 12.6557 10.7432 12.7974 10.5076L12.9238 10.2976C13.0667 10.06 12.989 9.75148 12.7506 9.60992L10.4944 8.27031C10.3427 8.18022 10.2497 8.01683 10.2497 7.84038V5.16667C10.2497 4.89052 10.0258 4.66667 9.74967 4.66667H9.49967Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-recent>\n                        </button>\n                        <span class=\"text-[1vw] font-bold\">Last watched anime</span>\n                    </div>\n                    <div class=\"flex items-center gap-[1vw]\">\n                        <button class=\"btn btn-warning min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] bg-surface-50 p-0\">\n                            <coreproject-icon-notification class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 14 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.99967 16.3333C7.74508 16.3333 8.38028 15.8374 8.59161 15.1592C8.67376 14.8955 8.44248 14.6667 8.16634 14.6667H5.83301C5.55686 14.6667 5.32559 14.8955 5.40774 15.1592C5.61907 15.8374 6.25427 16.3333 6.99967 16.3333ZM12.1461 11.4798C12.0524 11.386 11.9997 11.2588 11.9997 11.1262V7.16666C11.9997 4.74749 10.7851 2.7009 8.63075 2.00626C8.41019 1.93515 8.24967 1.73635 8.24967 1.50462V1.33333C8.24967 0.641662 7.69134 0.0833282 6.99967 0.0833282C6.30801 0.0833282 5.74967 0.641662 5.74967 1.33333V1.50494C5.74967 1.73653 5.58936 1.93524 5.369 2.00646C3.22139 2.70056 1.99967 4.73992 1.99967 7.16666V11.1262C1.99967 11.2588 1.947 11.386 1.85323 11.4798L0.479454 12.8535C0.385686 12.9473 0.333008 13.0745 0.333008 13.2071V13.3333C0.333008 13.6095 0.556865 13.8333 0.833008 13.8333H13.1663C13.4425 13.8333 13.6663 13.6095 13.6663 13.3333V13.2071C13.6663 13.0745 13.6137 12.9473 13.5199 12.8535L12.1461 11.4798ZM10.333 11.6667C10.333 11.9428 10.1091 12.1667 9.83301 12.1667H4.16634C3.8902 12.1667 3.66634 11.9428 3.66634 11.6667V7.16666C3.66634 5.09999 4.92467 3.41666 6.99967 3.41666C9.07467 3.41666 10.333 5.09999 10.333 7.16666V11.6667Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-notification>\n                        </button>\n                        <span class=\"text-[1vw] font-bold\">Notifications</span>\n                    </div>\n                </navigation-left-buttons>\n                <navigation-right-buttons class=\"mt-[0.4vw]\">\n                    <span class=\"text-[0.9vw] font-semibold leading-none\">More</span>\n                    <div class=\"mt-[0.75vw] flex gap-[0.9375vw]\">\n                        <button class=\"btn btn-accent min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] p-0\">\n                            <coreproject-icon-language class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 19 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.5388 12.0572C10.6519 11.7536 10.5765 11.4119 10.346 11.1841L8.74376 9.60081C8.66778 9.52573 8.66433 9.40428 8.73474 9.32395C10.0521 7.821 11.0686 6.04288 11.6803 4.14053C11.7071 4.05709 11.7844 3.99999 11.8721 3.99999H13.333C13.7932 3.99999 14.1663 3.62689 14.1663 3.16666C14.1663 2.70642 13.7932 2.33332 13.333 2.33332H8.33301V1.49999C8.33301 1.03975 7.95991 0.666656 7.49967 0.666656C7.03944 0.666656 6.66634 1.03975 6.66634 1.49999V2.33332H1.66634C1.2061 2.33332 0.833008 2.70642 0.833008 3.16666C0.833008 3.62689 1.2061 3.99999 1.66634 3.99999H9.85972C9.99741 3.99999 10.0939 4.13585 10.0457 4.26484C9.50884 5.70242 8.70714 7.07353 7.64674 8.29215C7.56886 8.38164 7.43039 8.38179 7.35241 8.29238C6.74997 7.60176 6.23177 6.85983 5.79781 6.08334C5.65624 5.83003 5.39216 5.66666 5.10197 5.66666C4.54126 5.66666 4.17002 6.24377 4.44131 6.73448C4.945 7.64553 5.55458 8.51419 6.2645 9.32382C6.33497 9.40418 6.33145 9.52572 6.25536 9.60077L2.74749 13.0604C2.418 13.3854 2.41616 13.9165 2.74339 14.2437C3.06903 14.5693 3.59699 14.5693 3.92263 14.2437L7.35825 10.8081C7.43636 10.73 7.56299 10.73 7.6411 10.8081L9.18501 12.352C9.60899 12.776 10.3295 12.6191 10.5388 12.0572ZM15.6597 7.9822C15.5133 7.5919 15.1402 7.33332 14.7233 7.33332H14.4427C14.0258 7.33332 13.6527 7.5919 13.5063 7.9822L10.3948 16.2796C10.2036 16.7895 10.5805 17.3333 11.125 17.3333C11.4505 17.3333 11.7418 17.1312 11.8557 16.8262L12.5511 14.9634C12.5803 14.8852 12.655 14.8333 12.7385 14.8333H16.4196C16.5029 14.8333 16.5774 14.8849 16.6068 14.9628L17.3093 16.8278C17.4238 17.132 17.7148 17.3333 18.0398 17.3333C18.5849 17.3333 18.9622 16.7889 18.7708 16.2785L15.6597 7.9822ZM13.5214 13.1667C13.3818 13.1667 13.2851 13.0273 13.3341 12.8966L14.3957 10.059C14.4605 9.88577 14.7055 9.88577 14.7703 10.059L15.832 12.8966C15.8809 13.0273 15.7842 13.1667 15.6446 13.1667H13.5214Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-language>\n\n                        </button>\n                        <button class=\"btn btn-accent min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] p-0\">\n                            <coreproject-icon-preference class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 6.125C14.4973 6.125 14.9742 5.92746 15.3258 5.57583C15.6775 5.2242 15.875 4.74728 15.875 4.25C15.875 3.75272 15.6775 3.27581 15.3258 2.92418C14.9742 2.57255 14.4973 2.375 14 2.375C13.5027 2.375 13.0258 2.57255 12.6742 2.92418C12.3225 3.27581 12.125 3.75272 12.125 4.25C12.125 4.74728 12.3225 5.2242 12.6742 5.57583C13.0258 5.92746 13.5027 6.125 14 6.125ZM14 8C14.7014 7.99994 15.3887 7.80319 15.9838 7.4321C16.5789 7.06101 17.0581 6.53045 17.3668 5.90069C17.6756 5.27093 17.8015 4.56721 17.7303 3.86947C17.6591 3.17173 17.3937 2.50793 16.9642 1.95347C16.5347 1.39902 15.9583 0.976128 15.3005 0.732839C14.6427 0.489551 13.9298 0.435617 13.2429 0.577162C12.5559 0.718708 11.9225 1.05006 11.4144 1.53358C10.9438 1.98145 10.5983 2.54324 10.4106 3.16333C10.3841 3.25062 10.305 3.3125 10.2138 3.3125H1.1875C0.93886 3.3125 0.700403 3.41127 0.524588 3.58709C0.348772 3.7629 0.25 4.00136 0.25 4.25C0.25 4.49864 0.348772 4.7371 0.524588 4.91291C0.700403 5.08873 0.93886 5.1875 1.1875 5.1875H10.2139C10.3051 5.1875 10.3842 5.24935 10.4106 5.33661C10.6359 6.08032 11.0872 6.73707 11.7036 7.21448C12.3609 7.72355 13.1686 7.99986 14 8ZM5.875 11.75C5.875 12.2473 5.67746 12.7242 5.32583 13.0758C4.9742 13.4275 4.49728 13.625 4 13.625C3.50272 13.625 3.02581 13.4275 2.67418 13.0758C2.32254 12.7242 2.125 12.2473 2.125 11.75C2.125 11.2527 2.32254 10.7758 2.67418 10.4242C3.02581 10.0725 3.50272 9.875 4 9.875C4.49728 9.875 4.9742 10.0725 5.32583 10.4242C5.67746 10.7758 5.875 11.2527 5.875 11.75ZM7.78581 12.6875C7.69478 12.6875 7.61577 12.7492 7.5892 12.8362C7.33917 13.6558 6.8154 14.3668 6.10312 14.8486C5.34808 15.3594 4.43289 15.5777 3.52859 15.4629C2.62428 15.348 1.79274 14.9078 1.18936 14.2245C0.585987 13.5412 0.252065 12.6616 0.25 11.75C0.24969 10.8371 0.582434 9.95535 1.18583 9.27023C1.78923 8.58511 2.62183 8.14365 3.5275 8.02861C4.43318 7.91358 5.34971 8.13289 6.10522 8.64541C6.81789 9.12888 7.34111 9.84192 7.58947 10.6633C7.61587 10.7506 7.695 10.8125 7.78623 10.8125H16.8125C17.0611 10.8125 17.2996 10.9113 17.4754 11.0871C17.6512 11.2629 17.75 11.5014 17.75 11.75C17.75 11.9986 17.6512 12.2371 17.4754 12.4129C17.2996 12.5887 17.0611 12.6875 16.8125 12.6875H7.78581Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-preference></button>\n                        <button class=\"btn btn-accent min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] p-0\">\n                            <coreproject-icon-moon class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.5004 9.65833C16.3693 11.0768 15.837 12.4287 14.9656 13.5557C14.0943 14.6826 12.92 15.5382 11.5802 16.0221C10.2403 16.5061 8.79039 16.5984 7.39999 16.2884C6.00959 15.9784 4.73623 15.2788 3.72893 14.2715C2.72162 13.2642 2.02202 11.9908 1.712 10.6004C1.40197 9.21001 1.49434 7.76007 1.97829 6.42025C2.46224 5.08042 3.31776 3.90614 4.44475 3.03479C5.57174 2.16345 6.92357 1.63109 8.34207 1.5C7.51158 2.62356 7.11195 4.00787 7.21585 5.40118C7.31975 6.79448 7.92029 8.10422 8.90824 9.09217C9.89619 10.0801 11.2059 10.6807 12.5992 10.7846C13.9925 10.8885 15.3768 10.4888 16.5004 9.65833Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-moon>\n                        </button>\n                        <button class=\"btn btn-accent min-h-max h-[2.5vw] w-[2.5vw] rounded-[0.375vw] bg-surface-50 p-0\">\n                            <coreproject-icon-settings class=\"text-surface-900 w-[1.25vw]\"><svelte-retag><svg class=\"text-surface-900 w-[1.25vw]\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n                        </button>\n                    </div>\n                </navigation-right-buttons>\n                <coreproject-icon-coreproject-text><svelte-retag><div class=\"mt-[1vw] items-center justify-center\"><div class=\"select-none gap-[0.25vw] text-[1.5vw] font-bold leading-none\"><p class=\"inline-flex\"><span class=\"text-accent opacity-75\">c</span> <span class=\"text-warning\">o</span> <span class=\"text-accent opacity-75\">r</span> <span class=\"text-accent opacity-75\">e</span></p> <p class=\"inline-flex\"><span class=\"text-white\">p</span> <span class=\"text-white\">r</span> <span class=\"text-white\">o</span> <span class=\"text-white\">j</span> <span class=\"text-white\">e</span> <span class=\"text-white\">c</span> <span class=\"text-white\">t</span></p></div></div><!--<Index>--></svelte-retag></coreproject-icon-coreproject-text>\n            </navigation-content>\n        </navigation-card>\n    </hero-section>\n    <my-list class=\"flex flex-col p-4 pt-7 md:mb-[1vw] md:mt-[2.1875vw] md:flex md:w-[68vw] md:p-0\">\n        <section-header class=\"flex items-center gap-[0.625vw]\">\n            <header-title class=\"text-lg font-bold md:text-[1.25vw]\">My List</header-title>\n            <button class=\"btn btn-secondary hidden rounded-[0.1875vw] p-0 md:flex md:h-[1.5vw] md:w-[1.5vw] min-h-full\">\n                <coreproject-icon-settings class=\"w-[0.9vw] opacity-75\"><svelte-retag><svg class=\"w-[0.9vw] opacity-75\" style=\"\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 8.00002C9.79085 8.00002 7.99999 9.79088 7.99999 12C7.99999 14.2092 9.79085 16 12 16C14.2091 16 16 14.2092 16 12C16 9.79088 14.2091 8.00002 12 8.00002ZM9.99999 12C9.99999 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 9.99999 13.1046 9.99999 12Z\" fill=\"currentColor\"></path><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7673 1.01709C10.9925 0.999829 11.2454 0.99993 11.4516 1.00001L12.5484 1.00001C12.7546 0.99993 13.0075 0.999829 13.2327 1.01709C13.4989 1.03749 13.8678 1.08936 14.2634 1.26937C14.7635 1.49689 15.1915 1.85736 15.5007 2.31147C15.7454 2.67075 15.8592 3.0255 15.9246 3.2843C15.9799 3.50334 16.0228 3.75249 16.0577 3.9557L16.1993 4.77635L16.2021 4.77788C16.2369 4.79712 16.2715 4.81659 16.306 4.8363L16.3086 4.83774L17.2455 4.49865C17.4356 4.42978 17.6693 4.34509 17.8835 4.28543C18.1371 4.2148 18.4954 4.13889 18.9216 4.17026C19.4614 4.20998 19.9803 4.39497 20.4235 4.70563C20.7734 4.95095 21.0029 5.23636 21.1546 5.4515C21.2829 5.63326 21.4103 5.84671 21.514 6.02029L22.0158 6.86003C22.1256 7.04345 22.2594 7.26713 22.3627 7.47527C22.4843 7.7203 22.6328 8.07474 22.6777 8.52067C22.7341 9.08222 22.6311 9.64831 22.3803 10.1539C22.1811 10.5554 21.9171 10.8347 21.7169 11.0212C21.5469 11.1795 21.3428 11.3417 21.1755 11.4746L20.5 12L21.1755 12.5254C21.3428 12.6584 21.5469 12.8205 21.7169 12.9789C21.9171 13.1653 22.1811 13.4446 22.3802 13.8461C22.631 14.3517 22.7341 14.9178 22.6776 15.4794C22.6328 15.9253 22.4842 16.2797 22.3626 16.5248C22.2593 16.7329 22.1255 16.9566 22.0158 17.14L21.5138 17.9799C21.4102 18.1535 21.2828 18.3668 21.1546 18.5485C21.0028 18.7637 20.7734 19.0491 20.4234 19.2944C19.9803 19.6051 19.4613 19.7901 18.9216 19.8298C18.4954 19.8612 18.1371 19.7852 17.8835 19.7146C17.6692 19.6549 17.4355 19.5703 17.2454 19.5014L16.3085 19.1623L16.306 19.1638C16.2715 19.1835 16.2369 19.2029 16.2021 19.2222L16.1993 19.2237L16.0577 20.0443C16.0228 20.2475 15.9799 20.4967 15.9246 20.7157C15.8592 20.9745 15.7454 21.3293 15.5007 21.6886C15.1915 22.1427 14.7635 22.5032 14.2634 22.7307C13.8678 22.9107 13.4989 22.9626 13.2327 22.983C13.0074 23.0002 12.7546 23.0001 12.5484 23H11.4516C11.2454 23.0001 10.9925 23.0002 10.7673 22.983C10.5011 22.9626 10.1322 22.9107 9.73655 22.7307C9.23648 22.5032 8.80849 22.1427 8.49926 21.6886C8.25461 21.3293 8.14077 20.9745 8.07542 20.7157C8.02011 20.4967 7.97723 20.2475 7.94225 20.0443L7.80068 19.2237L7.79791 19.2222C7.7631 19.2029 7.72845 19.1835 7.69396 19.1637L7.69142 19.1623L6.75458 19.5014C6.5645 19.5702 6.33078 19.6549 6.11651 19.7146C5.86288 19.7852 5.50463 19.8611 5.07841 19.8298C4.53866 19.7901 4.01971 19.6051 3.57654 19.2944C3.2266 19.0491 2.99714 18.7637 2.84539 18.5485C2.71718 18.3668 2.58974 18.1534 2.4861 17.9798L1.98418 17.14C1.87447 16.9566 1.74067 16.7329 1.63737 16.5248C1.51575 16.2797 1.36719 15.9253 1.32235 15.4794C1.26588 14.9178 1.36897 14.3517 1.61976 13.8461C1.81892 13.4446 2.08289 13.1653 2.28308 12.9789C2.45312 12.8205 2.65717 12.6584 2.82449 12.5254L3.47844 12.0054V11.9947L2.82445 11.4746C2.65712 11.3417 2.45308 11.1795 2.28304 11.0212C2.08285 10.8347 1.81888 10.5554 1.61972 10.1539C1.36893 9.64832 1.26584 9.08224 1.3223 8.52069C1.36714 8.07476 1.51571 7.72032 1.63732 7.47528C1.74062 7.26715 1.87443 7.04347 1.98414 6.86005L2.48605 6.02026C2.58969 5.84669 2.71714 5.63326 2.84534 5.45151C2.9971 5.23637 3.22655 4.95096 3.5765 4.70565C4.01966 4.39498 4.53862 4.20999 5.07837 4.17027C5.50458 4.1389 5.86284 4.21481 6.11646 4.28544C6.33072 4.34511 6.56444 4.4298 6.75451 4.49867L7.69141 4.83775L7.69394 4.8363C7.72844 4.8166 7.7631 4.79712 7.79791 4.77788L7.80068 4.77635L7.94225 3.95571C7.97723 3.7525 8.02011 3.50334 8.07542 3.2843C8.14077 3.0255 8.25461 2.67075 8.49926 2.31147C8.80849 1.85736 9.23648 1.49689 9.73655 1.26937C10.1322 1.08936 10.5011 1.03749 10.7673 1.01709ZM14.0938 4.3363C14.011 3.85634 13.9696 3.61637 13.8476 3.43717C13.7445 3.2858 13.6019 3.16564 13.4352 3.0898C13.2378 3.00002 12.9943 3.00002 12.5073 3.00002H11.4927C11.0057 3.00002 10.7621 3.00002 10.5648 3.0898C10.3981 3.16564 10.2555 3.2858 10.1524 3.43717C10.0304 3.61637 9.98895 3.85634 9.90615 4.3363L9.75012 5.24064C9.69445 5.56333 9.66662 5.72467 9.60765 5.84869C9.54975 5.97047 9.50241 6.03703 9.40636 6.13166C9.30853 6.22804 9.12753 6.3281 8.76554 6.52822C8.73884 6.54298 8.71227 6.55791 8.68582 6.57302C8.33956 6.77078 8.16643 6.86966 8.03785 6.90314C7.91158 6.93602 7.83293 6.94279 7.70289 6.93196C7.57049 6.92094 7.42216 6.86726 7.12551 6.7599L6.11194 6.39308C5.66271 6.2305 5.43809 6.14921 5.22515 6.16488C5.04524 6.17811 4.87225 6.23978 4.72453 6.34333C4.5497 6.46589 4.42715 6.67094 4.18206 7.08103L3.72269 7.84965C3.46394 8.2826 3.33456 8.49907 3.31227 8.72078C3.29345 8.90796 3.32781 9.09665 3.41141 9.26519C3.51042 9.4648 3.7078 9.62177 4.10256 9.9357L4.82745 10.5122C5.07927 10.7124 5.20518 10.8126 5.28411 10.9199C5.36944 11.036 5.40583 11.1114 5.44354 11.2504C5.47844 11.379 5.47844 11.586 5.47844 12C5.47844 12.414 5.47844 12.621 5.44354 12.7497C5.40582 12.8887 5.36944 12.9641 5.28413 13.0801C5.20518 13.1875 5.07927 13.2876 4.82743 13.4879L4.10261 14.0643C3.70785 14.3783 3.51047 14.5352 3.41145 14.7349C3.32785 14.9034 3.29349 15.0921 3.31231 15.2793C3.33461 15.501 3.46398 15.7174 3.72273 16.1504L4.1821 16.919C4.4272 17.3291 4.54974 17.5342 4.72457 17.6567C4.8723 17.7603 5.04528 17.8219 5.2252 17.8352C5.43813 17.8508 5.66275 17.7695 6.11199 17.607L7.12553 17.2402C7.42216 17.1328 7.5705 17.0791 7.7029 17.0681C7.83294 17.0573 7.91159 17.064 8.03786 17.0969C8.16644 17.1304 8.33956 17.2293 8.68582 17.427C8.71228 17.4421 8.73885 17.4571 8.76554 17.4718C9.12753 17.6719 9.30853 17.772 9.40635 17.8684C9.50241 17.963 9.54975 18.0296 9.60765 18.1514C9.66662 18.2754 9.69445 18.4367 9.75012 18.7594L9.90615 19.6637C9.98895 20.1437 10.0304 20.3837 10.1524 20.5629C10.2555 20.7142 10.3981 20.8344 10.5648 20.9102C10.7621 21 11.0057 21 11.4927 21H12.5073C12.9943 21 13.2378 21 13.4352 20.9102C13.6019 20.8344 13.7445 20.7142 13.8476 20.5629C13.9696 20.3837 14.011 20.1437 14.0938 19.6637L14.2499 18.7594C14.3055 18.4367 14.3334 18.2754 14.3923 18.1514C14.4502 18.0296 14.4976 17.963 14.5936 17.8684C14.6915 17.772 14.8725 17.6719 15.2344 17.4718C15.2611 17.4571 15.2877 17.4421 15.3141 17.427C15.6604 17.2293 15.8335 17.1304 15.9621 17.0969C16.0884 17.064 16.167 17.0573 16.2971 17.0681C16.4295 17.0791 16.5778 17.1328 16.8744 17.2402L17.888 17.607C18.3372 17.7696 18.5619 17.8509 18.7748 17.8352C18.9547 17.8219 19.1277 17.7603 19.2754 17.6567C19.4502 17.5342 19.5728 17.3291 19.8179 16.919L20.2773 16.1504C20.536 15.7175 20.6654 15.501 20.6877 15.2793C20.7065 15.0921 20.6721 14.9034 20.5885 14.7349C20.4895 14.5353 20.2921 14.3783 19.8974 14.0643L19.1726 13.4879C18.9207 13.2876 18.7948 13.1875 18.7159 13.0801C18.6306 12.9641 18.5942 12.8887 18.5564 12.7497C18.5215 12.6211 18.5215 12.414 18.5215 12C18.5215 11.586 18.5215 11.379 18.5564 11.2504C18.5942 11.1114 18.6306 11.036 18.7159 10.9199C18.7948 10.8126 18.9207 10.7124 19.1725 10.5122L19.8974 9.9357C20.2922 9.62176 20.4896 9.46479 20.5886 9.26517C20.6722 9.09664 20.7065 8.90795 20.6877 8.72076C20.6654 8.49906 20.5361 8.28259 20.2773 7.84964L19.8179 7.08102C19.5728 6.67093 19.4503 6.46588 19.2755 6.34332C19.1277 6.23977 18.9548 6.1781 18.7748 6.16486C18.5619 6.14919 18.3373 6.23048 17.888 6.39307L16.8745 6.75989C16.5778 6.86725 16.4295 6.92093 16.2971 6.93195C16.167 6.94278 16.0884 6.93601 15.9621 6.90313C15.8335 6.86965 15.6604 6.77077 15.3142 6.57302C15.2877 6.55791 15.2611 6.54298 15.2345 6.52822C14.8725 6.3281 14.6915 6.22804 14.5936 6.13166C14.4976 6.03703 14.4502 5.97047 14.3923 5.84869C14.3334 5.72467 14.3055 5.56332 14.2499 5.24064L14.0938 4.3363Z\" fill=\"currentColor\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-settings>\n\n            </button>\n        </section-header>\n        <my-list-info class=\"flex items-center justify-between\">\n            <span class=\"text-sm text-surface-50 md:text-[1vw] md:font-semibold\">7 anime in Watching</span>\n            <my-list-options class=\"hidden items-center gap-[1vw] md:flex\">\n                <button class=\"btn btn-neutral min-h-max h-[2.25vw] w-[6.625vw] gap-[0.625vw] rounded-[0.375vw] bg-surface-400 p-0 text-[0.875vw] font-semibold\">\n                    Watching\n                    <coreproject-icon-chevron class=\"w-[1vw]\"><svelte-retag><svg class=\"w-[1vw]\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"3.5\" d=\"M6 9L12 15L18 9\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-chevron>\n                </button>\n                <button class=\"btn btn-neutral min-h-max h-[2.25vw] w-[5.625vw] gap-[0.625vw] rounded-[0.375vw] bg-surface-400 p-0 text-[0.875vw] font-semibold\">\n                    Full List\n                    <coreproject-icon-arrow-up-right class=\"w-[1vw]\"><svelte-retag><svg class=\"w-[1vw]\" style=\"\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.66699 11.3333L11.3337 4.66666\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M4.66699 4.66666H11.3337V11.3333\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-arrow-up-right>\n                </button>\n            </my-list-options>\n            <see-all class=\"md:hidden\">\n                <button class=\"btn gap-2 p-0 text-sm\">\n                    See all\n                    <coreproject-icon-chevron class=\"w-4 -rotate-90 text-primary-400\"><svelte-retag><svg class=\"w-4 -rotate-90 text-primary-400\" style=\"\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"3.5\" d=\"M6 9L12 15L18 9\"></path></svg><!--<Index>--></svelte-retag></coreproject-icon-chevron>\n\n                </button>\n            </see-all>\n        </my-list-info>\n        <my-list-animes class=\"relative mt-4 grid grid-cols-3 gap-3 md:mt-[1vw] md:grid-cols-5 md:gap-[1.25vw]\">\n            \n                <coreproject-specific-my-anime-list dropdown_class=\"pl-3\" anime_name=\"One piece\" anime_status=\"watching\" anime_image=\"https://i.pinimg.com/originals/04/65/2b/04652b44ea7c1275d1022d98d59ecc97.jpg\" anime_current_episodes=\"612\" anime_total_episodes=\"1086\" anime_description=\"Azur Lane, a combination of all the different Camps in the world, was once successful in repelling the underwater menace, the Siren. Now splintered, they must face a new threat in Red Axis, former allies who crave to wield this otherworldly Siren technology for their own nefarious desires! Who will be victorious in the never-ending war between these battleship girls!? Akagami no Shirayuki-hime depicts Shirayuki's journey toward a new life at the royal palace of Clarines, as well as Zen's endeavor to become a prince worthy of his title. As loyal friendships are forged and deadly enemies formed, Shirayuki and Zen slowly learn to support each other as they walk their own paths.\" anime_studio=\"Bibury Animation Studios\" anime_genres=\"Action,Ecchi,sci-Fi\" data-svelte-retag-hydratable=\"\"><svelte-retag><div class=\"dropdown dropdown-hover\"><button class=\"relative\" tabindex=\"0\" aria-expanded=\"false\"><div class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\"><img class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\" src=\"https://i.pinimg.com/originals/04/65/2b/04652b44ea7c1275d1022d98d59ecc97.jpg\" alt=\"One piece\" style=\"\" loading=\"lazy\"></div> <div class=\"absolute inset-x-0 bottom-0 rounded-b-lg backdrop-blur md:rounded-b-[0.5vw]\"><div class=\"flex flex-col gap-1 bg-secondary/95 p-3 md:gap-[0.35vw] md:p-[1vw]\"><div role=\"contentinfo\" class=\"md:max-h-[1.35vw] md:leading-[1.35vw] hover:max-h-[10vw] duration-300 flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"line-clamp-1 text-sm font-semibold md:line-clamp-none md:text-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> One piece <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--> <div class=\"text-surface-50 flex items-center gap-2 text-xs leading-none md:gap-[0.5vw] md:text-[0.8vw]\"><span class=\"hidden capitalize md:flex\">watching</span> <svg class=\"hidden opacity-75 md:flex md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <span>612/1086</span></div></div></div></button> <button tabindex=\"0\" class=\"pl-3 dropdown-content top-0 z-10 hidden flex-col leading-none md:flex md:w-[20vw]\"><div class=\"flex flex-col bg-neutral text-start md:gap-[0.35vw] md:rounded-[0.75vw] md:rounded-t-[0.3vw] md:p-[1vw]\"><anime-name class=\"font-semibold text-accent md:text-[1vw] md:leading-[1.25vw]\">One piece</anime-name> <div class=\"text-surface-50 flex w-full items-center md:gap-[0.35vw] md:text-[0.8vw]\"><rating class=\"flex items-center md:gap-[0.5vw]\"><svg viewBox=\"0 0 30 30\" fill=\"yellow\" xmlns=\"http://www.w3.org/2000/svg\" class=\"md:w-[0.9vw]\" style=\"\"><path d=\"M15 2.5L18.8625 10.325L27.5 11.5875L21.25 17.675L22.725 26.275L15 22.2125L7.275 26.275L8.75 17.675L2.5 11.5875L11.1375 10.325L15 2.5Z\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--> <span class=\"text-surface-50 leading-none md:text-[0.8vw]\">4.5 rating</span></rating> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <anime-type>TV</anime-type> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <episodes-count>1086 episdoes</episodes-count></div> <studio class=\"text-surface-50 md:text-[0.75vw]\"><span>Bibury Animation Studios</span></studio> <genres class=\"flex items-center md:my-[0.35vw] md:gap-[0.5vw]\"><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">Action </genre><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">Ecchi </genre><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">sci-Fi </genre></genres> <div role=\"contentinfo\" class=\"md:max-h-[4vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"text-surface-50 md:text-[0.8vw] md:leading-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> Azur Lane, a combination of all the different Camps in the world, was once successful in repelling the underwater menace, the Siren. Now splintered, they must face a new threat in Red Axis, former allies who crave to wield this otherworldly Siren technology for their own nefarious desires! Who will be victorious in the never-ending war between these battleship girls!? Akagami no Shirayuki-hime depicts Shirayuki's journey toward a new life at the royal palace of Clarines, as well as Zen's endeavor to become a prince worthy of his title. As loyal friendships are forged and deadly enemies formed, Shirayuki and Zen slowly learn to support each other as they walk their own paths. <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--> <div class=\"divider md:m-0 md:before:h-[0.15vw] md:after:h-[0.15vw]\"></div> <options class=\"flex items-center md:gap-[0.5vw]\"><a href=\"/anime/mal/1/episode/4\" class=\"btn btn-primary h-[2.75vw] min-h-full flex-1 leading-none text-accent md:rounded-[0.5vw]\"><svg class=\"md:w-[0.9vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--> <span class=\"font-semibold md:text-[0.9vw]\">Continue Ep\r\n                        612</span></a> <a href=\"/anime/mal/1\" class=\"btn btn-square h-[2.75vw] min-h-full p-0 leading-none md:rounded-[0.5vw]\"><svg class=\"md:w-[1.2vw]\" style=\"\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 27.5C21.9036 27.5 27.5 21.9036 27.5 15C27.5 8.09644 21.9036 2.5 15 2.5C8.09644 2.5 2.5 8.09644 2.5 15C2.5 21.9036 8.09644 27.5 15 27.5Z\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 20V15\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 10H15.0125\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></a></options></div></button></div><!--<Index>--></svelte-retag></coreproject-specific-my-anime-list>\n            \n                <coreproject-specific-my-anime-list dropdown_class=\"pl-3\" anime_name=\"Jujutsu Kaisen\" anime_status=\"watching\" anime_image=\"https://m.media-amazon.com/images/M/MV5BMTMwMDM4N2EtOTJiYy00OTQ0LThlZDYtYWUwOWFlY2IxZGVjXkEyXkFqcGdeQXVyNjAwNDUxODI@._V1_FMjpg_UX1000_.jpg\" anime_current_episodes=\"13\" anime_total_episodes=\"25\" anime_description=\"Azur Lane, a combination of all the different Camps in the world, was once successful in repelling the underwater menace, the Siren. Now splintered, they must face a new threat in Red Axis, former allies who crave to wield this otherworldly Siren technology for their own nefarious desires! Who will be victorious in the never-ending war between these battleship girls!? Akagami no Shirayuki-hime depicts Shirayuki's journey toward a new life at the royal palace of Clarines, as well as Zen's endeavor to become a prince worthy of his title. As loyal friendships are forged and deadly enemies formed, Shirayuki and Zen slowly learn to support each other as they walk their own paths.\" anime_studio=\"Bibury Animation Studios\" anime_genres=\"Action,Ecchi,sci-Fi\" data-svelte-retag-hydratable=\"\"><svelte-retag><div class=\"dropdown dropdown-hover\"><button class=\"relative\" tabindex=\"0\" aria-expanded=\"false\"><div class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\"><img class=\"h-60 w-full rounded-lg object-cover object-center md:h-[20vw] md:rounded-[0.5vw]\" src=\"https://m.media-amazon.com/images/M/MV5BMTMwMDM4N2EtOTJiYy00OTQ0LThlZDYtYWUwOWFlY2IxZGVjXkEyXkFqcGdeQXVyNjAwNDUxODI@._V1_FMjpg_UX1000_.jpg\" alt=\"Jujutsu Kaisen\" style=\"\" loading=\"lazy\"></div> <div class=\"absolute inset-x-0 bottom-0 rounded-b-lg backdrop-blur md:rounded-b-[0.5vw]\"><div class=\"flex flex-col gap-1 bg-secondary/95 p-3 md:gap-[0.35vw] md:p-[1vw]\"><div role=\"contentinfo\" class=\"md:max-h-[1.35vw] md:leading-[1.35vw] hover:max-h-[10vw] duration-300 flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"line-clamp-1 text-sm font-semibold md:line-clamp-none md:text-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> Jujutsu Kaisen <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--> <div class=\"text-surface-50 flex items-center gap-2 text-xs leading-none md:gap-[0.5vw] md:text-[0.8vw]\"><span class=\"hidden capitalize md:flex\">watching</span> <svg class=\"hidden opacity-75 md:flex md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <span>13/25</span></div></div></div></button> <button tabindex=\"0\" class=\"pl-3 dropdown-content top-0 z-10 hidden flex-col leading-none md:flex md:w-[20vw]\"><div class=\"flex flex-col bg-neutral text-start md:gap-[0.35vw] md:rounded-[0.75vw] md:rounded-t-[0.3vw] md:p-[1vw]\"><anime-name class=\"font-semibold text-accent md:text-[1vw] md:leading-[1.25vw]\">Jujutsu Kaisen</anime-name> <div class=\"text-surface-50 flex w-full items-center md:gap-[0.35vw] md:text-[0.8vw]\"><rating class=\"flex items-center md:gap-[0.5vw]\"><svg viewBox=\"0 0 30 30\" fill=\"yellow\" xmlns=\"http://www.w3.org/2000/svg\" class=\"md:w-[0.9vw]\" style=\"\"><path d=\"M15 2.5L18.8625 10.325L27.5 11.5875L21.25 17.675L22.725 26.275L15 22.2125L7.275 26.275L8.75 17.675L2.5 11.5875L11.1375 10.325L15 2.5Z\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--> <span class=\"text-surface-50 leading-none md:text-[0.8vw]\">4.5 rating</span></rating> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <anime-type>TV</anime-type> <svg class=\"w-1 md:w-[0.25vw]\" style=\"\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"5\" cy=\"5\" r=\"5\" fill=\"currentColor\"></circle></svg><!--<Index>--> <episodes-count>25 episdoes</episodes-count></div> <studio class=\"text-surface-50 md:text-[0.75vw]\"><span>Bibury Animation Studios</span></studio> <genres class=\"flex items-center md:my-[0.35vw] md:gap-[0.5vw]\"><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">Action </genre><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">Ecchi </genre><genre class=\"bg-warning font-semibold leading-none text-black md:rounded-[0.25vw] md:px-[0.6vw] md:py-[0.3vw] md:text-[0.8vw]\">sci-Fi </genre></genres> <div role=\"contentinfo\" class=\"md:max-h-[4vw] flex h-full w-full overflow-y-scroll overscroll-y-contain scrollbar-thin [scrollbar-color:rgba(255,255,255,0.12)transparent] [mask-image:linear-gradient(180deg,rgba(7,5,25,0.95)80%,rgba(0,0,0,0)100%)]\"><div class=\"text-surface-50 md:text-[0.8vw] md:leading-[1vw]\"><div class=\"hidden h-0\"></div><!--<IntersectionOberser>--> Azur Lane, a combination of all the different Camps in the world, was once successful in repelling the underwater menace, the Siren. Now splintered, they must face a new threat in Red Axis, former allies who crave to wield this otherworldly Siren technology for their own nefarious desires! Who will be victorious in the never-ending war between these battleship girls!? Akagami no Shirayuki-hime depicts Shirayuki's journey toward a new life at the royal palace of Clarines, as well as Zen's endeavor to become a prince worthy of his title. As loyal friendships are forged and deadly enemies formed, Shirayuki and Zen slowly learn to support each other as they walk their own paths. <div class=\"hidden h-0\"></div><!--<IntersectionOberser>--></div></div><!--<Index>--> <div class=\"divider md:m-0 md:before:h-[0.15vw] md:after:h-[0.15vw]\"></div> <options class=\"flex items-center md:gap-[0.5vw]\"><a href=\"/anime/mal/1/episode/4\" class=\"btn btn-primary h-[2.75vw] min-h-full flex-1 leading-none text-accent md:rounded-[0.5vw]\"><svg class=\"md:w-[0.9vw]\" style=\"\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.9615 7.89235C13.1685 7.73214 13.3361 7.52665 13.4513 7.29164C13.5666 7.05663 13.6266 6.79834 13.6266 6.53658C13.6266 6.27482 13.5666 6.01653 13.4513 5.78152C13.3361 5.54651 13.1685 5.34102 12.9615 5.18081C10.2808 3.10657 7.28748 1.47165 4.09351 0.337231L3.50952 0.129752C2.39342 -0.266427 1.21383 0.488369 1.06269 1.64113C0.640479 4.89111 0.640479 8.18205 1.06269 11.432C1.21473 12.5848 2.39342 13.3396 3.50952 12.9434L4.09351 12.7359C7.28748 11.6015 10.2808 9.96659 12.9615 7.89235Z\" fill=\"currentColor\"></path></svg><!--<Index>--> <span class=\"font-semibold md:text-[0.9vw]\">Continue Ep\r\n                        13</span></a> <a href=\"/anime/mal/1\" class=\"btn btn-square h-[2.75vw] min-h-full p-0 leading-none md:rounded-[0.5vw]\"><svg class=\"md:w-[1.2vw]\" style=\"\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15 27.5C21.9036 27.5 27.5 21.9036 27.5 15C27.5 8.09644 21.9036 2.5 15 2.5C8.09644 2.5 2.5 8.09644 2.5 15C2.5 21.9036 8.09644 27.5 15 27.5Z\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 20V15\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M15 10H15.0125\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg><!--<Index>--></a></options></div></button></div><!--<Index>--></svelte-retag></coreproject-specific-my-anime-list>\n            \n        </my-list-animes>\n    </my-list>\n</home-container>\n</div>\n            </div>\n            <footer id=\"shell-footer\" class=\"flex-none\">\n                <div class=\"flex h-24 items-center justify-center md:hidden\">\n                    <div class=\"flex items-start justify-center gap-5\">\n                        <a href=\"/anime\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-primary-500 btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M7.99961 16V12C7.99961 11.4477 8.44733 11 8.99961 11H10.9996C11.5519 11 11.9996 11.4477 11.9996 12V16C11.9996 16.55 12.4496 17 12.9996 17H15.9996C16.5496 17 16.9996 16.55 16.9996 16V9.99997C16.9996 9.44769 17.4473 8.99997 17.9996 8.99997H18.6996C19.1596 8.99997 19.3796 8.42997 19.0296 8.12997L10.6696 0.599971C10.2896 0.259971 9.70961 0.259971 9.32961 0.599971L0.96961 8.12997C0.62961 8.42997 0.83961 8.99997 1.29961 8.99997H1.99961C2.55189 8.99997 2.99961 9.44769 2.99961 9.99997V16C2.99961 16.55 3.44961 17 3.99961 17H6.99961C7.54961 17 7.99961 16.55 7.99961 16Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">home</span>\n                        </a>\n                        <a href=\"/anime/explore\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-initial btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM5.65317 13.0185C5.26027 13.864 6.13598 14.7397 6.98146 14.3468L11.3472 12.318C11.7752 12.1191 12.1191 11.7752 12.318 11.3472L14.3468 6.98146C14.7397 6.13599 13.864 5.26026 13.0185 5.65317L8.65283 7.68197C8.22479 7.88089 7.88089 8.22479 7.68197 8.65283L5.65317 13.0185ZM10 8.9C10.61 8.9 11.1 9.39 11.1 10C11.1 10.61 10.61 11.1 10 11.1C9.39 11.1 8.9 10.61 8.9 10C8.9 9.39 9.39 8.9 10 8.9Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">explore</span>\n                        </a>\n                        <a href=\"/anime/forum\" type=\"button\" class=\"flex flex-col items-center gap-[0.5vh]\">\n                            <div class=\"bg-initial btn btn-icon h-12 w-20 rounded-xl p-0\">\n                                <div>\n                                    <svg class=\"w-5\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                                        <path d=\"M15.667 4.00002H15.3337C15.0575 4.00002 14.8337 4.22388 14.8337 4.50002V10.6667C14.8337 11.125 14.4587 11.5 14.0003 11.5H4.50033C4.22418 11.5 4.00033 11.7239 4.00033 12V12.3334C4.00033 13.25 4.75033 14 5.66699 14H13.7932C13.9258 14 14.053 14.0527 14.1468 14.1465L16.4801 16.4798C16.7951 16.7948 17.3337 16.5717 17.3337 16.1262V5.66669C17.3337 4.75002 16.5837 4.00002 15.667 4.00002ZM13.167 8.16669V2.33335C13.167 1.41669 12.417 0.666687 11.5003 0.666687H2.33366C1.41699 0.666687 0.666992 1.41669 0.666992 2.33335V11.9596C0.666992 12.405 1.20556 12.6281 1.52055 12.3131L3.85388 9.9798C3.94765 9.88603 4.07482 9.83335 4.20743 9.83335H11.5003C12.417 9.83335 13.167 9.08335 13.167 8.16669Z\" fill=\"currentColor\"></path>\n                                    </svg>\n                                </div>\n                            </div>\n                            <span class=\"text-xs font-bold capitalize text-surface-50\">forum</span>\n                        </a>\n                    </div>\n                </div>\n            </footer>\n        </div>\n    </div>\n\n\n \n        <div id=\"toast\" class=\"toast p-0 absolute bottom-[0.75vw] right-[0.75vw]\"></div>\n        <script>\n\n        </script>\n    \n\n<link rel=\"stylesheet\" href=\"/static/debug_toolbar/css/print.css\" media=\"print\">\n<link rel=\"stylesheet\" href=\"/static/debug_toolbar/css/toolbar.css\">\n\n\n<script type=\"module\" src=\"/static/debug_toolbar/js/toolbar.js\"></script>\n\n<div id=\"djDebug\" dir=\"ltr\" data-store-id=\"7546ec84447a45178294b3f1fa59debf\" data-render-panel-url=\"/__debug__/render_panel/\" data-sidebar-url=\"/__debug__/history_sidebar/\" data-default-show=\"true\">\n  <div class=\"djdt-hidden\" id=\"djDebugToolbar\">\n    <ul id=\"djDebugPanelList\">\n      <li><a id=\"djHideToolBarButton\" href=\"#\" title=\"Hide toolbar\">Hide »</a></li>\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-HistoryPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtHistoryPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"History\" class=\"HistoryPanel\">\n  \n  History\n  \n    \n      <br><small>/anime/_slider/0/</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-VersionsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtVersionsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Versions\" class=\"VersionsPanel\">\n  \n  Versions\n  \n    \n      <br><small>Django 5.0</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n<li id=\"djdt-TimerPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtTimerPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <div class=\"djdt-contentless\">\n  \n  Time\n  \n    \n      <br><small>Total: 49.83ms</small>\n    \n  \n  \n    </div>\n  \n</li>\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SettingsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSettingsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Settings from core.settings\" class=\"SettingsPanel\">\n  \n  Settings\n  \n    \n      \n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-HeadersPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtHeadersPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Headers\" class=\"HeadersPanel\">\n  \n  Headers\n  \n    \n      \n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-RequestPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtRequestPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Request\" class=\"RequestPanel\">\n  \n  Request\n  \n    \n      <br><small>anime_home_view_partial_slider_view</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SQLPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSQLPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"SQL queries from 1 connection\" class=\"SQLPanel\">\n  \n  SQL\n  \n    \n      <br><small>2 queries in 3.53ms</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-StaticFilesPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtStaticFilesPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Static files (2191 found, 0 used)\" class=\"StaticFilesPanel\">\n  \n  Static files\n  \n    \n      <br><small>0 files used</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-TemplatesPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtTemplatesPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Templates (1 rendered)\" class=\"TemplatesPanel\">\n  \n  Templates\n  \n    \n      <br><small>anime/_slider.html</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-CachePanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtCachePanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Cache calls from 1 backend\" class=\"CachePanel\">\n  \n  Cache\n  \n    \n      <br><small>0 calls in 0.00ms</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n\n\n\n\n\n\n\n\n\n\n<li id=\"djdt-SignalsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtSignalsPanel\" checked=\"\" title=\"Disable for next and successive requests\">\n  \n    <a href=\"#\" title=\"Signals\" class=\"SignalsPanel\">\n  \n  Signals\n  \n    \n      <br><small>77 receivers of 15 signals</small>\n    \n  \n  \n    </a>\n  \n</li>\n\n\n\n\n\n\n      \n        \n\n<li id=\"djdt-RedirectsPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtRedirectsPanel\" title=\"Enable for next and successive requests\">\n  \n    <div class=\"djdt-contentless djdt-disabled\">\n  \n  Intercept redirects\n  \n  \n    </div>\n  \n</li>\n\n      \n        \n\n<li id=\"djdt-ProfilingPanel\" class=\"djDebugPanelButton\">\n  <input type=\"checkbox\" data-cookie=\"djdtProfilingPanel\" title=\"Enable for next and successive requests\">\n  \n    <div class=\"djdt-contentless djdt-disabled\">\n  \n  Profiling\n  \n  \n    </div>\n  \n</li>\n\n      \n    </ul>\n  </div>\n  <div class=\"\" id=\"djDebugToolbarHandle\" style=\"top: 0px;\">\n    <div title=\"Show toolbar\" id=\"djShowToolBarButton\">\n      <span id=\"djShowToolBarD\">D</span><span id=\"djShowToolBarJ\">J</span>DT\n    </div>\n  </div>\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"HistoryPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>History</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"VersionsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Versions</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SettingsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Settings from core.settings</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"HeadersPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Headers</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"RequestPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Request</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SQLPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>SQL queries from 1 connection</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"StaticFilesPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Static files (2191 found, 0 used)</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"TemplatesPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Templates (1 rendered)</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"CachePanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Cache calls from 1 backend</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  \n\n\n  <div id=\"SignalsPanel\" class=\"djdt-panelContent djdt-hidden\">\n    <div class=\"djDebugPanelTitle\">\n      <button type=\"button\" class=\"djDebugClose\">×</button>\n      <h3>Signals</h3>\n    </div>\n    <div class=\"djDebugPanelContent\">\n      \n        <div class=\"djdt-loader\"></div>\n        <div class=\"djdt-scroll\"></div>\n      \n    </div>\n  </div>\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n\n\n\n  \n    \n\n\n\n  \n  <div id=\"djDebugWindow\" class=\"djdt-panelContent djdt-hidden\"></div>\n</div>\n\n\n","title":"AnimeCore","scroll":0}]"

Reproduction

Reproduction of this issue is a bit hard. Since running the project is not as simple ( i don't recommend running this at all )

  1. git clone https://github.com/baseplate-admin/coreproject.git
  2. cd backend
  3. npm i
  4. pipx install poetry
  5. pipx ensurepath
  6. poetry run poe dev
  7. npm run dev
  8. visit http://127.0.0.1:9000/anime
  9. Click the side nav.

I will try to recreate this in stackblitz

Logs

No response

System Info

System:
    OS: Windows 11 10.0.22631
    CPU: (16) x64 AMD Ryzen 7 7700X 8-Core Processor
    Memory: 19.95 GB / 31.21 GB
  Binaries:
    Node: 21.4.0 - C:\Program Files\nodejs\node.EXE
    Yarn: 1.22.21 - ~\AppData\Roaming\npm\yarn.CMD
    npm: 10.2.5 - C:\Program Files\nodejs\npm.CMD
  Browsers:
    Edge: Chromium (120.0.2210.77)
    Internet Explorer: 11.0.22621.1
  npmPackages:
    svelte: ^4.2.8 => 4.2.8
    svelte-retag: ^1.5.2 => 1.5.2

Severity

annoyance

baseplate-admin commented 8 months ago

After some digging this is due to

<button>
 <div> Hello world</div>
 </button>
patricknelson commented 8 months ago

Sorry @baseplate-admin but this is an utterly massive and apparently complicated wall of text.

Can you do me a favor and simplify this for me please and instead of screenshots of tons of code, can you reduce this down to it’s simplest form in a small/simple repo where I can reproduce please? Sadly I don’t have time to dissect this just to figure out if it’s really an issue with svelte-retag.

patricknelson commented 8 months ago

p.s. Here’s what I strongly recommend you do:

  1. Required: Setup the bare minimum “hello world” demo of the bug that I can clone/test. So… HTML/CSS/JS only (i.e. no Python) since this is a JS library. The simpler, the better!
  2. Required: Come back and just provide a simple high level summary of exactly what I need to do to re-create the bug in that demo.

I always find that the more you can simplify/reduce the issue to its simplest components the easier it is to reason about and eventually solve (and importantly: communicate). Thanks!

baseplate-admin commented 8 months ago

Yep thought so, my university opened so i have less time than before, please dont close this issue and i will see how to provide a stackblitz example

patricknelson commented 8 months ago

No, please put in a repo that I can clone down and reproduce locally, especially since this one seems complicated. I prefer that over an online demo because I need to quickly reproduce it locally. It'll also to help you narrow it down to only the bare minimum required parts (and helps to weed out false alarms).

Just to address this:

Yep thought so

Ok... well just look at it from my perspective: I'm not a python dev and I'm obviously not familiar with your codebase. Since you probably thought this might be hard, that's a clue that this work needs to be done. Plus, to ensure folks help me help them as quickly as possible, I even outline this in the bug issue template (inspired by the main Svelte repo), i.e.

Describe the bug: A clear and concise description of what the bug is. Reproduction: Please provide a link to a repo or REPL that can reproduce the problem you ran into.

Just some advice. Not sure you needed it or anything but figured I'd put that out there for you. Again: Simpler is better and, since this is potentially complicated, a local repro is going to be important to help me understand it more deeply.

baseplate-admin commented 8 months ago

Got it. I will put codes in a git repo

patricknelson commented 8 months ago

Hey @baseplate-admin it's been a few weeks. Have you had a chance to work on or think about a more distilled proof of concept for this bug/issue that you're seeing?

baseplate-admin commented 8 months ago

Hi, i am extremely sorry. University started and i am much busy with studies.

I would love to help you with this but i fear i wont be able to until next month

patricknelson commented 8 months ago

K no worries; I'm swamped as well by the very project that spawned the creation of svelte-retag itself (the redesign of our homepage). 😅 No rush though; will just keep an eye on this for now.

spuky commented 6 months ago

@baseplate-admin wow what a wild mixture of svelte and htmx (you are begging for trouble)

i'd guess htmx is trying to add its saved state (the dom before you navigated away..) to the dom before the output of your custom element is even in the dom... so it does not find the location where to put the cached stuf...

and just adds it to the Bottom of the Page..

it is really not the best idea to try to mess with the Dom of the custom element... which htmx would be doing in that case...but is not able because it runs before your custom element...

that is my analysis by looking over your code and the vids for a little while...

htmx is made for static html and a custom element is not static html...

I'd not consider this as a bug in svelte-retag or svelte nore in htmx... you are trying to combine stuff that do not go together...

Edit looked a little close it is the otherway arround... htmx is putting the renderd dom in place an then your custom element is messing up at some point...

baseplate-admin commented 6 months ago

wow what a wild mixture of svelte and htmx

XD you are right, its a never seen before concoction.

i'd guess htmx is trying to add its saved state (the dom before you navigated away..) to the dom before the output of your custom element is even in the dom... so it does not find the location where to put the cached stuf...

Yes you are right on this (partially), all the API used by htmx are internal, so we have almost no way to modify this default behavior.

htmx is made for static html and a custom element is not static html...

I disagree on this. Because web-components are html in nature.

I'd not consider this as a bug in svelte-retag or svelte nore in htmx... you are trying to combine stuff that do not go together...

I think it's a bug with svelte-retag. Specially how it implementes the svelte-retag wrapper. I think if that goes away, then this bug wont exist..

Edit looked a little close it is the otherway arround... htmx is putting the renderd dom in place an then your custom element is messing up at some point...

Yep you are on the right path. The rendered html is not being correctly processed by svelte-retag.


All in all i worked around this issue by not doing

<button> <div></div> </button>

I am sorry if i sound a bit rude. I am just a bit burned out today.

patricknelson commented 6 months ago

Have you tried <button><span></span></button>? Shot in the dark as I have zero comprehension of what's happening here (partly due to saving brain CPU cycles processing this; trying not to get nerd sniped! 😅). Only say that since you narrowed it down to that and <div> inside buttons isn't technically semantically correct; usually that's easily fixed with CSS but maybe there's something non-CSS specific happening there.

@baseplate-admin you said:

I think it's a bug with svelte-retag. Specially how it implementes the svelte-retag wrapper. I think if that goes away, then this bug wont exist..

Can you break down high level why you think this? Just the broad strokes; what's your theory? Does this happen to custom elements (web components) which are being appended to the DOM asynchronously after page load? Is this affecting svelte-retag managed custom elements which are nested inside of other custom elements, or maybe more importantly, is there anything inside of a svelte-retag custom element which is being separately changed by an external library (like htmx)?

Also, to top all that off: Have you considered using shadow DOM instead? Maybe give that a shot as well and see how that works, since that should help encapsulate things a bit better.

htmx is made for static html and a custom element is not static html...

I disagree on this. Because web-components are html in nature.

While custom elements are "HTML in nature" (after all, they descend from HTMLElement), they function differently from native HTML elements because they are much more likely to mutate light DOM content; it's entirely up to the programmer what those elements do. That's why the shadow DOM API exists (particularly the closed shadow DOM); so you can encapsulate your code away from the outside light DOM and also protect it from accidental conflicts or modifications, etc.

That's why I think @spuky might be onto something here. My gut instinct is that if htmx is swapping content above a svelte-retag managed element (like <coreproject-page-explore>) then I'd expect it to work fine; this is because svelte-retag is concerned about it's own contents. It manages the component and it's slot on connectedCallback() and disconnectedCallback(). However, if htmx is modifying the contents anywhere inside of the svelte-retag custom element, all bets are off; who knows what could happen (now you're in both svelte-retag and Svelte land with Svelte's and your custom element's code).

patricknelson commented 6 months ago

p.s. On that "HTML in nature" point, take the <details> tag for example. Think of it as a custom element as well that utilizes a shadow DOM. You plug your HTML into the light DOM, which is completely partitioned from the shadow DOM (and totally free for htmx to mutate as it sees fit) and the <details> element is able to utilize slots to input default content (i.e. the details) and also the <summary> tag which, for all intents and purposes, is like a summary slot.

image

It's not obvious looking at the light DOM here (which is all we can see) how the <details> element is able to actually hide the default slot content at all. The only hint we have is an implementation-specific to the <details> element itself, which is that it is missing the open attribute.

That's why I think if you tucked this into the shadow DOM, the results might be more aligned with what you expect. And if you cannot use the shadow DOM because you need content accessible to htmx, well... maybe therein lies the problem?


Edit: p.s. I could be wrong about the implementation details of <details> itself per se, I'm just using it as a metaphor (so sorry about the confusion there in case I'm wrong about precisely how it's implemented under the hood). The core point is still about encapsulation and separation of concerns. 😄

baseplate-admin commented 5 months ago

is there anything inside of a svelte-retag custom element which is being separately changed by an external library (like htmx)?

I think this is mostly the correct analogy, htmx swaps the html code and it executes any JavaScript that is within it. So basically what is happening is :


<svelte-retag>
    <svelte-retag></svelte-retag>
</svelte-retag>

I think this is un-fixable before addressing

Yep you remind me of this issue, This was also causing an issue with layouts with htmx,

@tokitouq you mentioned this issue, remember?

patricknelson commented 5 months ago

Hey @baseplate-admin. That’s just a side effect. Do you have any details on root cause?

Also, the core of my point is that this library doesn’t officially support outside libraries (i.e. those that are not part of the Svelte component, that is) modifying the contents of stuff inside of the custom element. It’s managed top down. That is, if HTMX is involved, fine, but as long as it’s not then reaching into the element. Adding elements that are svelte-retag elements might be ok (cannot guarantee it’ll work).

Anyway, until you have details on a simple way to reproduce this bug so we can get into the root cause, then I’m not sure if there’s anything I can do here (myself). Obviously, PR’s are also welcome (but would come with the same quality standard, i.e. a root cause analysis with the proposed solution).