:root {
    --bg-base: #090a0d;
    --bg-panel: #12131a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-strong: rgba(255, 255, 255, 0.05);
    --text-main: #f5f6fa;
    --text-body: #cfd4e0;
    --text-muted: #969cb0;
    --text-faint: #696f82;
    --line-subtle: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --accent: #7b84eb;
    --accent-soft: rgba(123, 132, 235, 0.2);
    --accent-hover: #9aa3ff;
    --overlay: rgba(5, 6, 10, 0.82);
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.26);
    --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.34);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --font-body: "Inter Variable", "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Georgia", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", "Songti SC", serif;
    --font-mono: "Berkeley Mono", "SF Mono", "Fira Code", Consolas, monospace;
    --container: 1200px;
    --header-height: 66px;
}

*,
*::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 {
    min-height: 100vh;
    color: var(--text-main);
    background: var(--bg-base);
    font-family: var(--font-body);
    font-feature-settings: "cv01", "ss03";
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(900px 500px at 5% -10%, rgba(123, 132, 235, 0.18), transparent 60%),
        radial-gradient(860px 520px at 100% 8%, rgba(117, 102, 192, 0.14), transparent 60%),
        linear-gradient(180deg, #090a0d 0%, #0c0d12 50%, #090a0d 100%);
}

.site-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(66px);
    opacity: 0.42;
}

.site-glow-top {
    width: 460px;
    height: 460px;
    top: -200px;
    right: -120px;
    background: radial-gradient(circle, rgba(140, 149, 255, 0.35), transparent 70%);
}

.site-glow-bottom {
    width: 400px;
    height: 400px;
    left: -180px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(102, 84, 172, 0.34), transparent 70%);
}

a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.16s ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line-subtle);
    background: rgba(10, 11, 15, 0.88);
    backdrop-filter: blur(12px);
}

.header-shell {
    width: 100%;
    max-width: var(--container);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-main);
    min-width: 0;
}

.logo:hover {
    color: var(--text-main);
}

.logo-img {
    width: auto;
    height: 34px;
    border-radius: 6px;
    border: 1px solid var(--line-subtle);
}

.logo-text {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-serif);
    font-size: 1.34rem;
    line-height: 1;
    letter-spacing: -0.025em;
}

.nav {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-submenu-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.36rem 0.62rem;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 510;
}

.nav-link:hover,
.nav-submenu-link:hover {
    color: var(--text-main);
    border-color: var(--line-subtle);
    background: var(--bg-card);
}

.nav-link.active,
.nav-submenu-link.active {
    color: var(--text-main);
    border-color: rgba(123, 132, 235, 0.35);
    background: var(--accent-soft);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 180px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    background: rgba(18, 19, 26, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.nav-item--has-children:hover .nav-submenu,
.nav-item--has-children:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.14s ease, color 0.14s ease, background-color 0.14s ease;
}

.btn-icon:hover {
    color: var(--text-main);
    border-color: var(--line-strong);
    background: var(--bg-card-strong);
}

.icon {
    width: 19px;
    height: 19px;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 95;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line-subtle);
    background: rgba(12, 13, 18, 0.98);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: 0.56rem 0.7rem;
    color: var(--text-body);
    font-size: 0.94rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-main);
    border-color: var(--line-subtle);
    background: var(--bg-card);
}

.mobile-nav-link--child {
    padding-left: 1.4rem;
    font-size: 0.9rem;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    background: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 640px;
    padding: 0 1rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: rgba(18, 20, 27, 0.97);
    box-shadow: var(--shadow-md);
}

.search-input-wrapper .icon {
    color: var(--text-faint);
}

.search-input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
}

.search-input::placeholder {
    color: var(--text-faint);
}

.search-close {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-size: 1.4rem;
    line-height: 1;
}

.search-close:hover {
    color: var(--text-main);
    background: var(--bg-card);
}

.main {
    padding: 2.2rem 0 3rem;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.3rem;
    align-items: start;
}

.content-column {
    min-width: 0;
}

.sidebar-column {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-panel {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 0.9rem;
}

.sidebar-title {
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.62rem;
}

.sidebar-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
}

.sidebar-search-input {
    width: 100%;
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.55rem 0.6rem;
    color: var(--text-main);
}

.sidebar-search-input:focus {
    outline: 0;
    border-color: rgba(123, 132, 235, 0.45);
}

.sidebar-search-submit {
    border: 1px solid rgba(123, 132, 235, 0.42);
    border-radius: var(--radius-sm);
    background: rgba(123, 132, 235, 0.22);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 510;
    padding: 0.5rem 0.6rem;
    text-align: center;
}

.sidebar-search-submit:hover {
    border-color: rgba(154, 163, 255, 0.58);
    background: rgba(154, 163, 255, 0.26);
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
}

.sidebar-list li {
    line-height: 1.45;
}

.sidebar-list a {
    color: var(--text-body);
    font-size: 0.9rem;
}

.sidebar-list a:hover {
    color: var(--accent-hover);
}

.sidebar-social-child {
    padding-left: 0.72rem;
    border-left: 1px solid var(--line-subtle);
}

.sidebar-empty {
    color: var(--text-faint);
    font-size: 0.88rem;
}

.featured-card,
.page-sheet,
.profile-card,
.article-sheet,
.story-card,
.category-head {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.featured-card {
    padding: 1.2rem 1.3rem;
    margin-bottom: 1.15rem;
}

.featured-label {
    color: var(--accent-hover);
    font-size: 0.75rem;
    font-weight: 510;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.featured-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.2vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.featured-title a {
    color: var(--text-main);
}

.featured-title a:hover {
    color: var(--accent-hover);
}

.featured-excerpt {
    color: var(--text-body);
    margin-bottom: 0.72rem;
    font-size: 1rem;
    line-height: 1.8;
}

.featured-meta,
.story-meta,
.article-meta,
.related-post-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.32rem;
    color: var(--text-faint);
    font-size: 0.82rem;
}

.featured-meta a,
.story-meta a,
.related-post-card-meta a,
.article-kicker a {
    color: inherit;
}

.featured-meta a:hover,
.story-meta a:hover,
.related-post-card-meta a:hover,
.article-kicker a:hover {
    color: var(--accent-hover);
}

.stream-section {
    margin-top: 1rem;
}

.stream-title {
    font-family: var(--font-serif);
    font-size: 1.42rem;
    letter-spacing: -0.015em;
    margin-bottom: 0.72rem;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.story-card {
    padding: 1rem;
}

.story-title {
    margin-top: 0.38rem;
    margin-bottom: 0.52rem;
    font-family: var(--font-serif);
    font-size: 1.36rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.story-title a {
    color: var(--text-main);
}

.story-title a:hover {
    color: var(--accent-hover);
}

.story-excerpt {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 0.56rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.story-link {
    color: var(--accent-hover);
    font-size: 0.86rem;
    font-weight: 510;
}

.story-link:hover {
    color: #b4bcff;
}

.category-head {
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.category-title,
.page-title,
.profile-title,
.article-title,
.error-title {
    color: var(--text-main);
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.category-title {
    margin-top: 0.2rem;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.category-description {
    margin-top: 0.4rem;
    color: var(--text-body);
    font-size: 0.98rem;
}

.mini-empty,
.no-results {
    border: 1px dashed var(--line-subtle);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--text-faint);
    background: rgba(255, 255, 255, 0.02);
}

.page-sheet,
.profile-card {
    padding: 1rem 1.1rem;
}

.page-head {
    margin-bottom: 0.8rem;
}

.page-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--line-subtle);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-placeholder {
    font-size: 2rem;
    color: var(--text-body);
    font-family: var(--font-serif);
}

.profile-title {
    font-size: 1.9rem;
    margin-bottom: 0.34rem;
}

.profile-bio {
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.profile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.profile-social a {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-pill);
    padding: 0.28rem 0.6rem;
    color: var(--text-body);
    font-size: 0.82rem;
}

.profile-social a:hover {
    color: var(--text-main);
    border-color: rgba(123, 132, 235, 0.44);
    background: var(--accent-soft);
}

.article-content {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.9;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: var(--text-main);
    font-family: var(--font-serif);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.article-content h2 {
    font-size: 1.56rem;
}

.article-content h3 {
    font-size: 1.3rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content pre,
.article-content blockquote,
.article-content table {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.1rem;
}

.article-content li + li {
    margin-top: 0.35rem;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    border: 1px solid rgba(123, 132, 235, 0.28);
    border-radius: var(--radius-md);
    padding: 0.86rem 0.95rem;
    background: rgba(123, 132, 235, 0.12);
}

.article-content pre {
    overflow-x: auto;
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    padding: 0.9rem 0.95rem;
    background: rgba(16, 17, 24, 0.9);
}

.article-content code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.article-content p code,
.article-content li code {
    border: 1px solid var(--line-subtle);
    border-radius: 6px;
    padding: 0.08rem 0.32rem;
    background: rgba(255, 255, 255, 0.04);
}

.article-content img {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    margin: 0.9rem 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-content th,
.article-content td {
    border-bottom: 1px solid var(--line-subtle);
    padding: 0.56rem 0.62rem;
    text-align: left;
}

.article-content th {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.article-content tr:last-child td {
    border-bottom: 0;
}

.container-reading {
    max-width: 960px;
}

.article-sheet {
    padding: 1.4rem 1.5rem;
}

.article-header {
    margin-bottom: 1.3rem;
}

.article-kicker {
    color: var(--text-faint);
    font-size: 0.86rem;
    margin-bottom: 0.34rem;
}

.article-title {
    font-size: clamp(2rem, 5.3vw, 3.4rem);
    line-height: 1.04;
    margin-bottom: 0.62rem;
}

.article-nav {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.article-nav-item {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.article-nav-next {
    text-align: right;
}

.article-nav-label,
.article-nav-empty {
    color: var(--text-faint);
    font-size: 0.78rem;
}

.article-nav-item a {
    color: var(--text-body);
    font-weight: 510;
}

.article-nav-item a:hover {
    color: var(--accent-hover);
}

.related-posts {
    margin-top: 1.8rem;
    border-top: 1px solid var(--line-subtle);
    padding-top: 1.15rem;
}

.related-posts-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
}

.related-posts-list {
    display: grid;
    gap: 0.65rem;
}

.related-post-card {
    border: 1px solid var(--line-subtle);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.82rem;
    background: rgba(255, 255, 255, 0.02);
}

.related-post-card-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.35rem;
}

.related-post-card-title a {
    color: var(--text-main);
}

.related-post-card-title a:hover {
    color: var(--accent-hover);
}

.error-page {
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-code {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 20vw, 8rem);
    line-height: 0.95;
    color: var(--accent-hover);
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.error-message {
    color: var(--text-body);
    margin-bottom: 1.05rem;
}

.error-actions {
    display: flex;
    gap: 0.6rem;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 132, 235, 0.5);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.95rem;
    background: rgba(123, 132, 235, 0.25);
    color: var(--text-main);
}

.error-btn:hover {
    color: var(--text-main);
    border-color: rgba(154, 163, 255, 0.64);
    background: rgba(154, 163, 255, 0.28);
}

.error-btn-secondary {
    border-color: var(--line-subtle);
    background: rgba(255, 255, 255, 0.03);
}

.footer {
    margin-top: 0.7rem;
    border-top: 1px solid var(--line-subtle);
    padding: 1.2rem 0 1.6rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.footer-copyright a {
    color: var(--text-body);
}

.footer-copyright a:hover {
    color: var(--accent-hover);
}

.back-to-top {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 80;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-subtle);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    background: rgba(16, 17, 24, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--text-main);
    border-color: var(--line-strong);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.reading-progress {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #97a0ff 0%, #7b84eb 55%, #616ad3 100%);
}

@media (max-width: 1120px) {
    .layout {
        grid-template-columns: minmax(0, 1fr) 290px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 60px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sidebar-column {
        position: static;
        top: auto;
    }

    .profile-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-next {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container,
    .header-shell {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .main {
        padding-top: 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .featured-card,
    .story-card,
    .category-head,
    .page-sheet,
    .profile-card,
    .article-sheet {
        padding: 0.88rem;
    }

    .featured-title {
        font-size: 1.7rem;
    }

    .story-title {
        font-size: 1.22rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .error-actions {
        width: 100%;
        flex-direction: column;
    }

    .error-btn {
        width: 100%;
    }
}

@media print {
    .header,
    .footer,
    .mobile-nav,
    .search-modal,
    .sidebar-column,
    .back-to-top,
    .article-nav,
    .related-posts,
    .reading-progress {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
