@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #111;
}

::selection {
    background: rgba(10, 132, 255, 0.3);
}

a {
    color: #74b9ae;
    text-decoration: none;
    cursor: pointer;
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
    color: rgba(116, 185, 174, 0.3333333333);
}

.wiki-container {
    display: grid;
    grid-template-areas: 'header header' 'sidebar content' 'footer footer';
    grid-template-columns: 280px 1fr;
    grid-template-rows: 64px 1fr auto;
    min-height: 100vh;
    transition: grid-template-columns 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
    .wiki-container {
        grid-template-areas: 'header' 'content' 'footer';
        grid-template-columns: 1fr;
    }
}
.wiki-container.sidebar-collapsed {
    grid-template-columns: 60px 1fr;
}
@media (max-width: 1024px) {
    .wiki-container.sidebar-collapsed {
        grid-template-columns: 1fr;
    }
}
.wiki-container.sidebar-collapsed .wiki-sidebar {
    width: 60px;
}
.wiki-container.sidebar-collapsed .wiki-sidebar__title,
.wiki-container.sidebar-collapsed
    .wiki-sidebar
    .nav-item
    span:not(.material-icons) {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}
.wiki-container.sidebar-collapsed .wiki-sidebar .nav-item {
    justify-content: center;
    padding: 0.75rem;
}
.wiki-container.sidebar-collapsed .wiki-sidebar .nav-item .material-icons {
    margin: 0;
}
.wiki-container.sidebar-collapsed .sidebar-collapse-btn .material-icons {
    transform: rotate(180deg);
}
.wiki-container.sidebar-collapsed .wiki-footer {
    padding-left: calc(60px + 1.5rem);
}
@media (max-width: 1024px) {
    .wiki-container.sidebar-collapsed .wiki-footer {
        padding-left: 1.5rem;
    }
}

.wiki-header {
    grid-area: header;
    position: sticky;
    top: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1.5rem;
    background-color: rgba(34, 34, 34, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid #222;
}
.wiki-header__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.wiki-header__center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}
@media (max-width: 768px) {
    .wiki-header__center {
        display: none;
    }
}
.wiki-header__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.wiki-header__mobile-toggle {
    display: none;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wiki-header__mobile-toggle:hover {
    background-color: #222;
}
.wiki-header__mobile-toggle:active {
    transform: scale(0.98);
}
.wiki-header__mobile-toggle:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.wiki-header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: #fff;
}
.wiki-header__mobile-toggle .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}
@media (max-width: 1024px) {
    .wiki-header__mobile-toggle {
        display: flex;
    }
}

.wiki-logo__text span {
    color: #ffce62;
}

.wiki-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.wiki-logo__image {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.wiki-logo__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wiki-logo__image:empty {
    background: linear-gradient(135deg, #74b9ae 0%, #ffce62 100%);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}
.wiki-logo__image:empty::after {
    content: 'LOGO';
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.wiki-logo__text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.wiki-logo__text span {
    color: #74b9ae;
}
@media (max-width: 640px) {
    .wiki-logo__text {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .wiki-logo {
        gap: 0.5rem;
    }
    .wiki-logo__image {
        width: 32px;
        height: 32px;
    }
}

.wiki-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #b8dcd6;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-links__item {
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-links__item:hover {
    background-color: #222;
}
.header-links__item:active {
    transform: scale(0.98);
}
.header-links__item:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.header-links__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #b8dcd6;
    background: transparent;
    border: none;
    gap: 0.5rem;
    text-decoration: none;
}
.header-links__item .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 18px;
}
.header-links__item:hover {
    color: #fff;
}
.header-links__item--primary {
    background-color: #74b9ae;
    color: #fff;
}
.header-links__item--primary:hover {
    background-color: rgba(116, 185, 174, 0.3333333333);
}
.header-links__item--logout {
    border: 1px solid #333;
}
.header-links__item--logout:hover {
    border-color: #ff453a;
    color: #ff453a;
}

.wiki-header__title {
    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.search-input {
    width: 100%;
    height: 40px;
    padding: 0 1rem 0 2.5rem;
    font-family:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        sans-serif;
    font-size: 0.875rem;
    color: #fff;
    background-color: #333;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.search-input::placeholder {
    color: #b8dcd6;
}
.search-input:focus {
    outline: none;
    border-color: #74b9ae;
    background-color: #222;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.3);
}
.search-input:hover:not(:focus) {
    border-color: #333;
}

.search-btn {
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.search-btn:hover {
    background-color: #222;
}
.search-btn:active {
    transform: scale(0.98);
}
.search-btn:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.search-btn {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #b8dcd6;
    border-radius: 4px;
}
.search-btn .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 20px;
}
.search-btn:hover {
    color: #fff;
    background: transparent;
}

.search-shortcut {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.75rem;
    color: #b8dcd6;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
}

.wiki-sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    width: 280px;
    padding: 1rem 0;
    background-color: #222;
    border-right: 1px solid #222;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wiki-sidebar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.wiki-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.wiki-sidebar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 9999px;
}
.wiki-sidebar::-webkit-scrollbar-thumb:hover {
    background: #b8dcd6;
}
@media (max-width: 1024px) {
    .wiki-sidebar {
        position: fixed;
        top: 64px;
        left: 0;
        bottom: 0;
        z-index: 200;
        transform: translateX(-100%);
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow:
            0 16px 48px rgba(0, 0, 0, 0.6),
            0 8px 16px rgba(0, 0, 0, 0.4);
    }
    .wiki-sidebar--open {
        transform: translateX(0);
    }
}
.wiki-sidebar__section {
    margin-bottom: 1.5rem;
}
.wiki-sidebar__section:last-child {
    margin-bottom: 0;
}
.wiki-sidebar__title {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b8dcd6;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition:
        opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.sidebar-collapse-toggle {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
    .sidebar-collapse-toggle {
        display: none;
    }
}

.sidebar-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    color: #b8dcd6;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-collapse-btn .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 20px;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-collapse-btn:hover {
    background: #222;
    border-color: #b8dcd6;
    color: #fff;
}
.sidebar-collapse-btn:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}

.nav-item {
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item:hover {
    background-color: #222;
}
.nav-item:active {
    transform: scale(0.98);
}
.nav-item:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    text-decoration: none;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item span:not(.material-icons) {
    transition:
        opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 300ms cubic-bezier(0.4, 0, 0.2, 1),
        width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.nav-item .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 20px;
    color: #b8dcd6;
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item:hover {
    color: #b8dcd6;
    background-color: #222;
}
.nav-item:hover .material-icons {
    color: #74b9ae;
}
.nav-item--active {
    color: #fff;
    background-color: rgba(116, 185, 174, 0.6666666667);
    border-left-color: #74b9ae;
    font-weight: 500;
}
.nav-item--active .material-icons {
    color: #74b9ae;
}
.nav-item--active:hover {
    background-color: rgba(116, 185, 174, 0.6666666667);
}
.nav-item--nested {
    padding-left: 3rem;
    font-size: 0.875rem;
}
.nav-item--nested::before {
    content: '';
    width: 6px;
    height: 1px;
    background-color: #333;
    margin-right: 0.5rem;
}

.nav-group__header {
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-group__header:hover {
    background-color: #222;
}
.nav-group__header:active {
    transform: scale(0.98);
}
.nav-group__header:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.nav-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #b8dcd6;
    background: transparent;
    border: none;
    text-align: left;
}
.nav-group__header .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 18px;
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-group__header--expanded .material-icons {
    transform: rotate(90deg);
}
.nav-group__items {
    display: none;
}
.nav-group__items--visible {
    display: block;
}

.wiki-content {
    grid-area: content;
    min-height: calc(100vh - 64px - 56px);
    padding: 2rem 2.5rem;
    background-color: #111;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .wiki-content {
        padding: 1.5rem 1rem;
    }
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}
.content-section:last-child {
    margin-bottom: 0;
}
.content-section__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
}

.markdown-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
}
@media (max-width: 768px) {
    .markdown-content h1 {
        font-size: 2rem;
    }
}
.markdown-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #222;
}
.markdown-content h2:first-child {
    margin-top: 0;
}
.markdown-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.markdown-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.markdown-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #b8dcd6;
    margin-bottom: 1rem;
}
.markdown-content p:last-child {
    margin-bottom: 0;
}
.markdown-content a {
    color: #74b9ae;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(116, 185, 174, 0.3);
    text-underline-offset: 2px;
    cursor: pointer;
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.markdown-content a:hover {
    color: rgba(116, 185, 174, 0.3333333333);
}
.markdown-content a:hover {
    text-decoration-color: #74b9ae;
}
.markdown-content ul,
.markdown-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.markdown-content ul li,
.markdown-content ol li {
    margin-bottom: 0.5rem;
    color: #b8dcd6;
    line-height: 1.75;
}
.markdown-content ul {
    list-style-type: none;
}
.markdown-content ul li {
    position: relative;
    padding-left: 1rem;
}
.markdown-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #74b9ae;
    border-radius: 9999px;
}
.markdown-content ol {
    list-style-type: none;
    counter-reset: list-counter;
}
.markdown-content ol li {
    position: relative;
    padding-left: 1.5rem;
    counter-increment: list-counter;
}
.markdown-content ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #74b9ae;
    width: 20px;
}
.markdown-content code {
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875em;
    letter-spacing: -0.03em;
    color: #74b9ae;
    background-color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #222;
}
.markdown-content pre {
    position: relative;
    margin: 1.5rem 0;
    border-radius: 8px;
    background-color: #333;
    border: 1px solid #222;
    overflow: hidden;
}
.markdown-content pre code {
    display: block;
    padding: 1rem;
    overflow-x: auto;
    background: transparent;
    border: none;
    color: #fff;
}
.markdown-content pre code::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.markdown-content pre code::-webkit-scrollbar-track {
    background: transparent;
}
.markdown-content pre code::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 9999px;
}
.markdown-content pre code::-webkit-scrollbar-thumb:hover {
    background: #b8dcd6;
}
.markdown-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem;
    padding-left: 1.25rem;
    background-color: rgba(116, 185, 174, 0.1);
    border-left: 4px solid #74b9ae;
    border-radius: 0 6px 6px 0;
}
.markdown-content blockquote p {
    color: #b8dcd6;
    margin-bottom: 0;
}
.markdown-content hr {
    margin: 2rem 0;
    border: none;
    height: 1px;
    background-color: #222;
}
.markdown-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}
.markdown-content table th,
.markdown-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #222;
}
.markdown-content table th {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background-color: #222;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.markdown-content table td {
    font-size: 0.875rem;
    color: #b8dcd6;
    background-color: #111;
}
.markdown-content table tr {
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.markdown-content table tr:hover td {
    background-color: #222;
}
.markdown-content table tr:last-child td {
    border-bottom: none;
}
.markdown-content input[type='checkbox'] {
    margin-right: 0.5rem;
    accent-color: #74b9ae;
}
.markdown-content mark {
    background-color: rgba(10, 132, 255, 0.15);
    color: #74b9ae;
    padding: 0 0.25rem;
    border-radius: 4px;
}
.markdown-content strong:contains('TODO') {
    color: #ff9f0a;
}

.search-results__header {
    margin-bottom: 2rem;
}
.search-results__query {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.search-results__query span {
    color: #74b9ae;
}
.search-results__count {
    font-size: 0.875rem;
    color: #b8dcd6;
}
.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search-results__empty {
    text-align: center;
    padding: 4rem 0;
}
.search-results__empty .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 64px;
    color: #b8dcd6;
    margin-bottom: 1rem;
}
.search-results__empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.search-results__empty p {
    color: #b8dcd6;
}

.search-result-item {
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.search-result-item:hover {
    background-color: #222;
}
.search-result-item:active {
    transform: scale(0.98);
}
.search-result-item:focus-visible {
    outline: 2px solid #74b9ae;
    outline-offset: 2px;
}
.search-result-item {
    display: block;
    padding: 1.25rem;
    background-color: #222;
    border: 1px solid #222;
    border-radius: 8px;
    text-decoration: none;
}
.search-result-item:hover {
    border-color: #333;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
}
.search-result-item__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #b8dcd6;
    margin-bottom: 0.5rem;
}
.search-result-item__breadcrumb .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    font-size: 14px;
}
.search-result-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.search-result-item__title mark {
    background-color: rgba(10, 132, 255, 0.15);
    color: #74b9ae;
    padding: 0 0.25rem;
    border-radius: 4px;
}
.search-result-item__excerpt {
    font-size: 0.875rem;
    color: #b8dcd6;
    line-height: 1.75;
}
.search-result-item__excerpt mark {
    background-color: rgba(10, 132, 255, 0.15);
    color: #74b9ae;
    padding: 0 0.25rem;
    border-radius: 4px;
}

.wiki-footer {
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1.5rem;
    padding-left: calc(280px + 1.5rem);
    background-color: #222;
    border-top: 1px solid #222;
    transition: padding-left 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
    .wiki-footer {
        padding-left: 1.5rem;
    }
}
@media (max-width: 768px) {
    .wiki-footer {
        flex-direction: column;
        height: auto;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
}
.wiki-footer__copyright {
    font-size: 0.875rem;
    color: #b8dcd6;
}
.wiki-footer__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.wiki-footer__link {
    cursor: pointer;
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wiki-footer__link:hover {
    color: rgba(116, 185, 174, 0.3333333333);
}
.wiki-footer__link {
    font-size: 0.875rem;
    color: #b8dcd6;
}
.wiki-footer__link:hover {
    color: #fff;
}
.wiki-footer__version {
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.75rem;
    color: #b8dcd6;
    padding: 0.25rem 0.5rem;
    background-color: #333;
    border-radius: 4px;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: #74b9ae;
    border-radius: 9999px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.doc-page {
    max-width: 900px;
    margin: 0 auto;
}

.doc-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #222;
}

.doc-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffce62;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .doc-title {
        font-size: 2rem;
    }
}

.doc-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #b8dcd6;
}

.doc-section {
    margin-bottom: 2.5rem;
}
.doc-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffce62;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #74b9ae;
    display: inline-block;
}

.section-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #b8dcd6;
    margin-bottom: 1rem;
}
.section-text:last-child {
    margin-bottom: 0;
}

.doc-subsection {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffce62;
    margin-bottom: 0.75rem;
}

.doc-list {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.doc-list li {
    position: relative;
    margin-bottom: 0.5rem;
    color: #b8dcd6;
    line-height: 1.75;
    padding-left: 1rem;
}
.doc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #74b9ae;
    border-radius: 9999px;
}
.doc-list--numbered {
    counter-reset: list-counter;
}
.doc-list--numbered li {
    counter-increment: list-counter;
    padding-left: 1.5rem;
}
.doc-list--numbered li::before {
    content: counter(list-counter) '.';
    width: auto;
    height: auto;
    background: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #74b9ae;
    top: 0;
    border-radius: 0;
}

.doc-figure {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #222;
    border: 1px solid #222;
}

.doc-image {
    width: 100%;
    height: auto;
    display: block;
}

.doc-figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #b8dcd6;
    text-align: center;
    background-color: #333;
    border-top: 1px solid #222;
}

.code-block {
    position: relative;
    margin: 1rem 0;
    border-radius: 8px;
    background-color: #333;
    border: 1px solid #222;
    overflow: hidden;
}
.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
}
.code-block pre::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.code-block pre::-webkit-scrollbar-track {
    background: transparent;
}
.code-block pre::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 9999px;
}
.code-block pre::-webkit-scrollbar-thumb:hover {
    background: #b8dcd6;
}
.code-block pre code {
    display: block;
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #fff;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.code-lang {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #b8dcd6;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background-color: #222;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.inline-code {
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875em;
    letter-spacing: -0.03em;
    color: #74b9ae;
    background-color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #222;
}

.table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 8px;
    border: 1px solid #222;
}
.table-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 9999px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #b8dcd6;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.doc-table th,
.doc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #222;
}
.doc-table th {
    font-weight: 600;
    color: #fff;
    background-color: #222;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.75rem;
}
.doc-table td {
    color: #b8dcd6;
    background-color: #111;
}
.doc-table tr {
    transition: all 100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.doc-table tr:hover td {
    background-color: #222;
}
.doc-table tr:last-child td {
    border-bottom: none;
}
.doc-table--params th:nth-child(2),
.doc-table--params td:nth-child(2) {
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    color: #ffce62;
}
.doc-table--params th:nth-child(3),
.doc-table--params td:nth-child(3) {
    text-align: center;
}
.doc-table--worksheet th {
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: normal;
}

.label {
    font-weight: 600;
    color: #fff;
}

.endpoint-card {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #222;
    border: 1px solid #222;
    border-radius: 12px;
}
.endpoint-card:first-of-type {
    margin-top: 1rem;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.endpoint-path {
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.endpoint-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #b8dcd6;
    margin-bottom: 0.75rem;
}

.endpoint-auth,
.endpoint-note {
    font-size: 0.875rem;
    color: #b8dcd6;
    margin-bottom: 0.5rem;
}

.endpoint-section {
    margin-top: 1.25rem;
}

.endpoint-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.http-method {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-family:
        'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
}
.http-method--get {
    background-color: rgba(48, 209, 88, 0.15);
    color: #30d158;
}
.http-method--post {
    background-color: rgba(116, 185, 174, 0.15);
    color: #74b9ae;
}
.http-method--put {
    background-color: rgba(255, 159, 10, 0.15);
    color: #ff9f0a;
}
.http-method--delete {
    background-color: rgba(255, 69, 58, 0.15);
    color: #ff453a;
}
.http-method--patch {
    background-color: rgba(255, 206, 98, 0.15);
    color: #ffce62;
}

@media print {
    .wiki-sidebar,
    .wiki-header,
    .wiki-footer,
    .search-container {
        display: none !important;
    }
    .wiki-container {
        display: block;
    }
    .wiki-content {
        padding: 0;
        max-width: 100%;
    }
    pre {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
