/*
Theme Name: Simple
Author: testiplay
Author URI: http://testiplay.com
Description: Default theme with Dark Mode (Deep Black).
Version: 1.0
bg --- #18181e
*/

/* --------------------------------------
   Base
-------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

:root {
    --theme-light-visible: flex;
    --theme-dark-visible: none;
    --background: #1a1a30;
    --text-color: #222;
    --link-text-color: #0077ff;
    
        --background-image: linear-gradient(
        189deg,
        #2F2E52 0.55%,
        #252644 30.38%,
        #1F1F38 65.19%,
        #18182D 100%
    );
    
    
}

html.dark-mode {
    --theme-light-visible: none;
    --theme-dark-visible: flex;
    --background: #1a1a30;
    --text-color: #fff;
    --link-text-color: #8ab4f8;
}

.theme-light {
    display: var(--theme-light-visible);
}

.theme-dark {
    display: var(--theme-dark-visible);
}

html {
    background: var(--background);
    overflow-y: scroll;
    scrollbar-color: #818181 rgb(0 0 0 / 0%);
    color: var(--text-color);
	
	background-image: var(--background-image);
    background-repeat: no-repeat;
    background-position: top;
    background-size:100% auto;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    touch-action: manipulation;
}

a {
    color: var(--link-text-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    touch-action: manipulation;
}

nav ul, nav ol {
    margin: 0;
    list-style: none;
}

iframe {
    border-radius: 12px;
    border: 0;
}

.clipped {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}




/* --------------------------------------
   Layout & Fixed Sidebar
-------------------------------------- */

.archive-layout {
    --sidebar-width: 240px;
    --sidebar-gap: 40px;
     /* --layout-width: 1200px; */

    width: 100%;
    max-width: var(--layout-width);
    margin: 0 auto;

    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    column-gap: var(--sidebar-gap);
    align-items: start;
}

/* --------------------------------------
   Fixed Sidebar
-------------------------------------- */

.archive-sidebar {
    position: fixed;
    top: 66px;
    bottom: 0;

    width: var(--sidebar-width);
    
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #151515d9;

    /*
     * Sidebar fiziškai pastatomas į
     * pirmą grid'o koloną.
     */
    left: max(
        15px,
        calc((100vw - var(--layout-width)) / 2)
    );

    z-index: 10;
}

/* --------------------------------------
   Sidebar Box
-------------------------------------- */

.sidebar-box {
    padding: 15px;
    backdrop-filter: blur(6px);
}

.sidebar-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.5;
    margin-bottom: 14px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    font-size: 15px;

    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;

    padding: 10px;
    border-radius: 12px;

    text-decoration: none;
    color: #f1f1f1;

    background-clip: padding-box;
    border: 2px solid #0000;

    transition: 0.18s ease;
}

.sidebar-link:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-link[data-state="active"] {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-count {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.45;
}

/* --------------------------------------
   Archive Content
-------------------------------------- */

.archive-layout > .content {
    grid-column: 2;

    min-width: 0;
    width: 100%;
    max-width: 900px;

    margin: 0;
}

.archive-content {
    min-width: 0;
}

/* --------------------------------------
   Mobile
-------------------------------------- */

@media (max-width: 800px) {

    .archive-layout {
        width: 100%;
        max-width: none;

        grid-template-columns: minmax(0, 1fr);
        gap: 20px;

        padding: 0 15px;
    }

    .archive-sidebar {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;
        z-index: auto;
    }

    .archive-layout > .content {
        grid-column: 1;
        max-width: none;
    }

    .sidebar-menu {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* --------------------------------------
   List View
-------------------------------------- */

.list-view .archive-posts-container {
    display: grid;
    grid-template-columns: auto;
}

.list-view .post-card,
.list-view html.dark-mode .post-card {
    background: transparent;
    color: #e0e0e0;
    box-shadow: none;
    display: flex;
}

.list-view .post-card img {
    width: 192px;
    display: block;
    border-radius: 12px;
}

.list-view .post-card-content {
    padding: 5px 15px;
}




/* --------------------------------------
   EMBED (o-embed)
-------------------------------------- */
o-embed {
    display: block;
    width: 100%;
    margin: 12px 0;
    overflow: hidden;
}

o-embed[provider="youtube"],
o-embed[provider="yt"],
o-embed[provider="vimeo"] {
    aspect-ratio: 16 / 9;
}

o-embed[provider="soundcloud"],
o-embed[provider="sc"] {
    height: 166px;
}

o-embed[provider="mixcloud"],
o-embed[provider="mc"] {
    height: 120px;
}

o-embed[provider="x"],
o-embed[provider="twitter"] {
    min-height: 280px;
}

o-embed > iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------
   Buttons / Utils
-------------------------------------- */
.primary-button {
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 500;
    background: #0d6efd;
    color: #fff;
    border: 1px solid #303030;
    border-radius: 24px;
    cursor: pointer;
}

.secondary-button {
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 500;
    background: #2b2b2b;
    color: #989898;
    border: 1px solid #303030;
    border-radius: 24px;
    cursor: pointer;
}

icon-svg {
    display: flex;
}

svg.icon {
    vertical-align: middle;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

/* --------------------------------------
   Header
-------------------------------------- */
.site-header {
    background: #fff;
    height: 66px;
	padding: 0px 25px;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header icon-svg{
    width: 24px;
    height: 24px;
}

html.dark-mode .site-header {
    background: #000000d9;
    backdrop-filter: blur(20px);
    color: #fff;
    border-bottom: 1px solid #333;
}

/* Header action buttons only (NOT submenu toggle) */
.site-header button:not(.submenu-toggle) {
    padding: 6px 12px;
    color: #111;
    border: none;
    background: transparent;
    cursor: pointer;
}

html.dark-mode .site-header button:not(.submenu-toggle) {
    color: #fff;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

/* VI — 3D gylio neoninis efektas */
.animated-vi {
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-right: 4px;

  text-shadow:
    1px 1px 0 #b967ff,
    2px 2px 0 #b967ff,
    3px 3px 0 #a56cff,
    4px 4px 0 #01cdfe,
    0 0 15px rgba(255, 113, 206, 0.6),
    0 0 25px rgba(1, 205, 254, 0.4);

  animation: vi-3d-pulse 4s ease-in-out infinite alternate;
}

@keyframes vi-3d-pulse {
  0% {
    text-shadow:
      1px 1px 0 #b967ff,
      2px 2px 0 #b967ff,
      3px 3px 0 #a56cff,
      4px 4px 0 #01cdfe,
      0 0 10px rgba(255, 113, 206, 0.4),
      0 0 20px rgba(1, 205, 254, 0.3);
  }

  100% {
    text-shadow:
      1px 1px 0 #b967ff,
      2px 2px 0 #b967ff,
      3px 3px 0 #a56cff,
      4px 4px 0 #01cdfe,
      0 0 18px rgba(255, 113, 206, 0.7),
      0 0 30px rgba(1, 205, 254, 0.45);
  }
}

/* Dark mode */
html.dark-mode .logo {
  color: #7a7a7a;
}

/* --------------------------------------
   NAV + DROPDOWN (UL/LI version)
-------------------------------------- */

html.menu-open,
html.menu-open body {
  position: relative;
  height: 100% !important;
  overflow: hidden !important;
}

/* Desktop nav container */
.nav {
    display: flex;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

/* Reset ul/li */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Top-level links */
.nav-li > a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(17, 17, 17);
    text-decoration: none;
    line-height: 1.2;
}

html.dark-mode .nav-li > a {
    color: rgba(255, 255, 255, 0.80);
}

/* Dropdown toggle looks like link */
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.submenu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}

html.dark-mode .submenu-toggle {
    color: #fff;
}

.submenu-caret {
    display: none;
}

.has-submenu.open .submenu-caret {
    transform: rotate(0deg);
}

/* Submenu panel */
.submenu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    z-index: 1200;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.submenu[hidden] {
    display: none !important;
}

html.dark-mode .submenu {
    background: #1c1c1c;
    border-color: #333;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    line-height: 1.2;
}

html.dark-mode .submenu a {
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .submenu a:hover {
        background: rgba(0, 0, 0, 0.05);
        text-decoration: none;
    }

    html.dark-mode .submenu a:hover {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* --------------------------------------
   Burger button
-------------------------------------- */
.burger {
    display: none;
    flex-direction: column;
    width: 24px;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #111;
    border-radius: 3px;
    transition: 0.3s;
}

html.dark-mode .burger span {
    background: #fff;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------
   MOBILE RESPONSIVENESS (menu + submenu)
-------------------------------------- */
@media (max-width: 800px) {
    /* Stagger step'ai (gali lengvai reguliuoti) */
    .nav {
        --menu-stagger-step: 30ms;
        --submenu-stagger-step: 20ms;
    }

    /* Show burger */
    .burger {
        display: flex;
        order: 1;
    }

    /* Fullscreen menu */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: 0.35s ease, background 0.3s, color 0.3s;
        z-index: 999;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 90px;
        padding-bottom: 30px;
        overflow-y: auto;
        display: block;
    }

    html.dark-mode .nav {
        background: #121212;
    }

    .nav.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Stack items vertically */
    .nav-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding-bottom: 32px;
    }

    .nav-li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Top links */
    .nav-li > a {
        width: 100%;
        text-align: left;
        font-size: 26px;
        font-weight: 600;
        padding: 10px 48px;
        color: #111;
        line-height: 1.2;
    }

    html.dark-mode .nav-li > a {
        color: #fff;
    }

    /* Toggle (Apple-like layout) */
    .submenu-toggle {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        width: 100%;
        text-align: left;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2;
        gap: 12px;
        color: #111;
        white-space: normal;
        padding-inline-start: 48px;
        padding-inline-end: 48px;
    }

    html.dark-mode .submenu-toggle {
        color: #fff;
    }

    .submenu-caret {
        transition: transform 0.2s ease;
        transform: rotate(-90deg);
        width: 16px;
        display: inline-block;
    }

    .has-submenu.open .submenu-caret {
        transform: rotate(0deg);
    }

    /* Mobile submenu = inline accordion */
    .submenu {
        position: static;
        top: auto;
        left: auto;
        min-width: auto;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        gap: 0;
    }

    /* Mobile dark mode submenu be background */
    html.dark-mode .submenu {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .submenu a {
        font-size: 24px;
        font-weight: 400;
        padding: 6px 48px;
        text-align: left;
        width: 100%;
        border-radius: 0;
    }

    .submenu a:hover {
        background: transparent;
        text-decoration: underline;
    }

    /* Optional: tighter header on mobile */
    .site-header {
        padding: 12px 16px;
    }

    /* --------------------------------------
       MOBILE MENU ITEM FADE-IN (top-level)
    -------------------------------------- */
    .nav-list > .nav-li {
        opacity: 0;
        transform: none;
        transition: opacity 0.2s ease-out;
        transition-delay: 0s;
        will-change: opacity;
    }

    .nav.show .nav-list > .nav-li {
        opacity: 1;
        transform: none;
        /* Delay pagal --item-number (0,1,2...) */
        transition-delay: calc((var(--item-number, 0) + 1) * var(--menu-stagger-step));
    }

    /* Uždarant – be uždelsimo */
    .nav:not(.show) .nav-list > .nav-li {
        transition-delay: 0s;
    }

    /* ===========================
       MOBILE SUBMENU SMOOTH
       (palieka tavo menu animaciją)
    =========================== */

	/* Override global [hidden] tik mobile submenu atveju */
	.nav .has-submenu > .submenu[hidden] {
		display: block !important;
	}

	/* Submenu closed state */
	.nav .has-submenu > .submenu {
		overflow: hidden;
		height: 0;
		opacity: 0;
		margin-bottom: 0;
		transition:
			height 0.28s cubic-bezier(.22, .61, .36, 1),
			opacity 0.18s ease-out,
			margin-bottom 0.22s ease;
		will-change: height, opacity;
	}

	/* Submenu open state (aukštį nustato JS inline style) */
	.nav .has-submenu.open > .submenu {
		opacity: 1;
		margin-bottom: 15px;
	}

    /* Submenu itemų animacija */
    .nav .has-submenu > .submenu > li {
        opacity: 0;
        transform: translateY(-4px);
        transition:
            opacity 0.18s ease-out,
            transform 0.22s ease;
        transition-delay: 0s;
    }

    .nav .has-submenu.open > .submenu > li {
        opacity: 1;
        transform: translateY(0);
        /* Delay pagal --item-number */
        transition-delay: calc((var(--item-number, 0) + 1) * var(--submenu-stagger-step));
    }

    /* Uždarant – be delay */
    .nav .has-submenu:not(.open) > .submenu > li {
        transition-delay: 0s;
    }
}

/* --------------------------------------
   Content layout
-------------------------------------- */
.content {
    max-width: 900px;
    padding: 20px 15px;
	padding-bottom: 2rem;
	margin-bottom: 20px;
}

.content-full {
    max-width: none;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.post-content {
    padding-left: 0;
}

.post-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #F1EAFF;
}

.post-content ol,
.post-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.post-content li {
    padding-left: 0.25rem;
}

.post-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.post-image {
    border-radius: 12px;
    width: 100%;
    height: 320px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    margin-bottom: 20px;
}

blockquote {
    margin: 1.25rem 0;
    padding: 0.25rem 0 0.25rem 1rem;
    border-left: 3px solid #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.post-content pre {
    margin: 1rem 0;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    overflow: auto;
    background: #72727226;
}

.post-content pre code {
    background: unset;
    border-radius: 0;
    padding: 0;
}

.post-content code {
    background-color: rgb(126 126 126 / 20%);
    border-radius: 2px;
    padding: 0.2em;
}

/* --------------------------------------
   Footer
-------------------------------------- */
.site-footer {
    text-align: center;
    font-size: 14px;
}

html.dark-mode .site-footer {
    color: #999;
}

/* --------------------------------------
   Post lists
-------------------------------------- */
.home-grid,
.archive-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px 0px;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

html.dark-mode .post-card {
    background: #272847;
    color: #e5ddff;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

html.dark-mode .post-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.post-card img {
    width: 100%;
    aspect-ratio: 450 / 273;
    object-fit: cover;
    display: block;
}

.post-card-content {
    padding: 15px;
}

.post-card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.post-card-title a {
    color: #222;
}

html.dark-mode .post-card-title a {
    color: #f1ecff;
}

.post-meta {
    font-size: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
    color: #96a8d6;
}


.post-excerpt {
    font-size: 14px;
}

.term-description {
	font-size: 13px;
	color: #d8d8ff;
    border-radius: 10px;
}

/* --------------------------------------
   Single post
-------------------------------------- */
.single-post h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
	color: #FFB2C6;
}

.single-post h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.single-post h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.single-post .content {
    font-size: 18px;
    margin-top: 15px;
}

html.dark-mode .single-post .content {
    color: #e0e0e0;
}

.meta {
    margin-top: 25px;
    padding: 12px 15px;
    background: #f1f1f1;
    border-radius: 12px;
    font-size: 14px;
    color: #555;
}

html.dark-mode .meta {
    background: #1a1a1a;
    color: #ccc;
}

.post-actions button {
    display: flex;
	background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
}

.post-action-group{
    padding: 4px 12px;
    background: #90909021;
    border-radius: 50px;
	height: 32px;
    display: flex;
    align-items: center;
	gap: 8px;
}

.post-action-text {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

.post-actions icon-svg {
	width: 18px;
    height: 18px;
}

html.dark-mode .post-actions icon-svg {
    color: #7e7e7e;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.action-btn.active icon-svg {
    color: #000;
}

html.dark-mode .action-btn.active icon-svg {
    color: #fff;
}

/* --------------------------------------
   Term
-------------------------------------- */
.term-title {
    font-size: 22px;
    color: #bfd7ff;
}

.term-header {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

/* --------------------------------------
   Search inputs
-------------------------------------- */
input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

html.dark-mode input,
html.dark-mode textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #eee;
}

/* --------------------------------------
   404 page
-------------------------------------- */
.error-404 {
    text-align: center;
    padding: 80px 0;
}

.error-404 h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

/* --------------------------------------
   Extra
-------------------------------------- */
.loading-sentinel {
    margin-top: 20px;
    height: 32px;
    border-radius: 20px;
    text-align: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    color: #8e8e8e;
}








.archive-sidebar1 {
    height: 544px;
    overflow-y: scroll;
    border-radius: 16px;
    padding: 15px;
    background: #201f2f;
    overscroll-behavior: contain;
    scrollbar-width: thin;
	scrollbar-color: rgb(0 0 0 / 0%) rgb(0 0 0 / 0%);
}

.archive-sidebar1:hover {
    scrollbar-color: #fb5c5c rgb(0 0 0 / 0%);
}



/* TOGGLE BUTTON */
.sidebar-toggle {
    display: flex;
    margin-left: auto;
    border: none;
    background: transparent;
    color: #ffffff8f;
    padding: 0px 0px 16px;
    border-radius: 10px;
    cursor: pointer;
}

.archive-sidebar.collapsed .sidebar-toggle {
    margin: auto;
}

/* COLLAPSED SIDEBAR */
.archive-sidebar.collapsed{
	width:80px;
}

.archive-sidebar.collapsed .sidebar-title,
.archive-sidebar.collapsed .sidebar-count,
.archive-sidebar.collapsed .sidebar-link span,
.archive-sidebar.collapsed .status-message{
	display:none;
}

/* paliekam tik icons */
.archive-sidebar.collapsed .sidebar-link{
	justify-content:center;
	padding:10px;
}

.archive-sidebar.collapsed .sidebar-link svg{
	margin:0;
}