@import 'GrassWebBlazor.Client.8811f3ccp3.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/

#blazor-error-ui[b-guk01nki00] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-guk01nki00] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavFooter.razor.rz.scp.css */
/* Footer */
.site-footer[b-14lwijf6vu] {
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
    background: #fafafa;
}

.footer-inner[b-14lwijf6vu] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
    
    
}

@media (min-width: 768px) {
    .footer-inner[b-14lwijf6vu] {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand[b-14lwijf6vu] {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-desc[b-14lwijf6vu] {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    margin: 0;
    padding: 0;
}

.footer-links-col h4[b-14lwijf6vu] {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.footer-links-col ul li[b-14lwijf6vu] {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links-col a[b-14lwijf6vu] {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links-col a:hover[b-14lwijf6vu] {
    color: var(--primary);
}

.footer-bottom[b-14lwijf6vu] {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Header */
.site-header[b-yfcnjp9u29] {
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-inner[b-yfcnjp9u29] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.brand[b-yfcnjp9u29] {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.brand-image img[b-yfcnjp9u29] {
    width: 6em;
    height: auto;
    vertical-align: middle;
}

.main-nav[b-yfcnjp9u29] {
    display: none;
    list-style: none;
}



/* Mobile Menu Active State */
@media (max-width: 767.98px) {
    .main-nav[b-yfcnjp9u29] {
        display: block;
        /* Always block to allow transforms */
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;

        background: #fff;
        padding: 24px;
        transform: translateX(100%);
        visibility: hidden;
        /* Hide cleanly when closed */
        transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
        /* Delay visibility change until transform ends */
        border-top: 1px solid var(--border);
    }

    .main-nav.active[b-yfcnjp9u29] {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.3s ease-in-out, visibility 0s linear 0s;
        /* Show immediately */
    }

    .nav-list[b-yfcnjp9u29] {
        flex-direction: column;
        gap: 16px;
        font-size: 1.2rem;
        padding-left: 0rem;
        /* Keep original font size */
        align-items: center;
        padding: 0;
        list-style: none;
    }
    .nav-list[b-yfcnjp9u29] {
        padding: 0;
        margin: 0;
        list-style: none;
    }
}

.nav-list[b-yfcnjp9u29] {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link[b-yfcnjp9u29] {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    list-style: none;
}

[b-yfcnjp9u29] .nav-link:hover,
[b-yfcnjp9u29] .nav-link.active {
    color: var(--primary);
}

.header-actions[b-yfcnjp9u29] {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn[b-yfcnjp9u29] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    touch-action: manipulation;
}

.mobile-menu-btn span[b-yfcnjp9u29] {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-btn.open span:nth-child(1)[b-yfcnjp9u29] {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2)[b-yfcnjp9u29] {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3)[b-yfcnjp9u29] {
    transform: rotate(-45deg) translate(7px, -6px);
}

.btn-icon[b-yfcnjp9u29] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover[b-yfcnjp9u29] {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.restore-menu-btn[b-yfcnjp9u29] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.restore-menu-btn:hover[b-yfcnjp9u29] {
    transform: scale(1.1);
}


@media (min-width: 768px) {
    .main-nav[b-yfcnjp9u29] {
        display: block;

    }

    .mobile-menu-btn[b-yfcnjp9u29] {
        display: none;
    }
}

/* User Profile Badge */
.user-profile[b-yfcnjp9u29] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-link[b-yfcnjp9u29] {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.2s ease;
}

.profile-link:hover[b-yfcnjp9u29] {
    background: rgba(0, 0, 0, 0.08);
}

.user-avatar[b-yfcnjp9u29] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.user-name[b-yfcnjp9u29] {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6td3xk7bic],
.components-reconnect-repeated-attempt-visible[b-6td3xk7bic],
.components-reconnect-failed-visible[b-6td3xk7bic],
.components-pause-visible[b-6td3xk7bic],
.components-resume-failed-visible[b-6td3xk7bic],
.components-rejoining-animation[b-6td3xk7bic] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-retrying[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-failed[b-6td3xk7bic],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6td3xk7bic] {
    display: block;
}


#components-reconnect-modal[b-6td3xk7bic] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-6td3xk7bic 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6td3xk7bic 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6td3xk7bic 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6td3xk7bic]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6td3xk7bic 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6td3xk7bic {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6td3xk7bic {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6td3xk7bic {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6td3xk7bic] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6td3xk7bic] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6td3xk7bic] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6td3xk7bic] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6td3xk7bic] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6td3xk7bic] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6td3xk7bic] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6td3xk7bic 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6td3xk7bic] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6td3xk7bic {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section 保持不变，只改 Code Block 部分 */
.site-main[b-w0mqwlumua] {
    /*    padding-top: var(--header-height);*/
}

.hero-section[b-w0mqwlumua] {
    padding: 80px 0;
}

.hero-inner[b-w0mqwlumua] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-inner[b-w0mqwlumua] {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-label[b-w0mqwlumua] {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title[b-w0mqwlumua] {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title[b-w0mqwlumua] {
        font-size: 56px;
    }
}

.hero-desc[b-w0mqwlumua] {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns[b-w0mqwlumua] {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats[b-w0mqwlumua] {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.stat-num[b-w0mqwlumua] {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label[b-w0mqwlumua] {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================= */
/* Linux Terminal Style - 硬核风格           */
/* ========================================= */

.terminal-window[b-w0mqwlumua] {
    background: #0c0c0c;
    /* 纯黑背景 */
    border: 1px solid #333;
    /* 细微边框 */
    border-radius: 4px;
    /* 极小的圆角，或者设为0完全直角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* 更深的阴影 */
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    /* 强制等宽字体 */
}

.terminal-header[b-w0mqwlumua] {
    background: #1f1f1f;
    /* 标题栏颜色 */
    padding: 8px 12px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.terminal-user[b-w0mqwlumua] {
    font-size: 12px;
    color: #ccc;
    font-weight: bold;
}

.terminal-content[b-w0mqwlumua] {
    padding: 16px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.command-line[b-w0mqwlumua] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* 提示符颜色 */
.prompt[b-w0mqwlumua] {
    color: #27c93f;
    /* 经典的终端绿 */
    font-weight: bold;
}

/* 输入的命令 */
.cmd[b-w0mqwlumua] {
    color: #fff;
}

/* 代码输出区域 */
.code-output[b-w0mqwlumua] {
    margin: 0 0 16px 0;
    /* 这里的margin是为了隔开下面的光标行 */
    font-family: inherit;
    color: #d4d4d4;
    white-space: pre-wrap;
}

/* 光标闪烁动画 */
.cursor[b-w0mqwlumua] {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #d4d4d4;
    animation: blink-b-w0mqwlumua 1s step-end infinite;
}

@keyframes blink-b-w0mqwlumua {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* 语法高亮调整 (保持原本配色或微调适应黑色背景) */
.k[b-w0mqwlumua] {
    color: #cc7832;
}

/* keyword (橙色系，类似IntelliJ或传统终端高亮) */
.v[b-w0mqwlumua] {
    color: #9876aa;
}

/* variable (紫色系) */
.s[b-w0mqwlumua] {
    color: #6a8759;
}

/* string (暗绿色) */
.p[b-w0mqwlumua] {
    color: #a9b7c6;
}

/* property (灰白色) */
/* /Components/Pages/Pages/Document.razor.rz.scp.css */
/* Layout Main Container */
.doc-layout[b-uxymf95ga8],
.doc-layout *[b-uxymf95ga8] {
    box-sizing: border-box;
}

.doc-layout[b-uxymf95ga8] {
    display: flex;
    min-height: calc(100vh - 64px);
    /* Changed from fixed height to min-height */
    background-color: var(--bg-surface, #f8f9fa);
    position: relative;
    user-select: none;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
}

/* Common Pane Sytles */
.pane[b-uxymf95ga8] {
    display: flex;
    flex-direction: column;
    background: #fff;
    /* Removed overflow: hidden and height: 100% to allow natural expansion */
}

.pane-header[b-uxymf95ga8] {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    color: #555;
    background: #fafafa;
    flex-shrink: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pane-content[b-uxymf95ga8] {
    flex: 1;
    /* Removed overflow-y: auto */
}

/* Project Pane */
.project-pane[b-uxymf95ga8] {
    background: #fdfdfd;
}

.project-list[b-uxymf95ga8] {
    padding: 8px;
}

.project-item[b-uxymf95ga8] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #444;
}

.project-item:hover[b-uxymf95ga8] {
    background: #eee;
}

.project-item.active[b-uxymf95ga8] {
    background: #e6f7ff;
    color: #0078d4;
    font-weight: 600;
}

.project-icon[b-uxymf95ga8] {
    width: 24px;
    height: 24px;
    background: #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #666;
}

.project-item.active .project-icon[b-uxymf95ga8] {
    background: #0078d4;
    color: #fff;
}

/* Splitter */
.splitter[b-uxymf95ga8] {
    width: 4px;
    background: #f0f0f0;
    cursor: col-resize;
    flex-shrink: 0;
    transition: background 0.2s;
    position: relative;
    z-index: 10;
}

.splitter:hover[b-uxymf95ga8],
.splitter:active[b-uxymf95ga8] {
    background: #0078d4;
}

/* File Pane */
.file-pane[b-uxymf95ga8] {
    background: #fff;
    position: sticky;
    top: 64px;
    /* Adjust according to your navbar height */
    height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.file-tree[b-uxymf95ga8] {
    padding: 8px 0;
    font-size: 0.9rem;
}

.folder-header[b-uxymf95ga8] {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    cursor: pointer;
    gap: 8px;
    color: #333;
}

.folder-header:hover[b-uxymf95ga8] {
    background: #f5f5f5;
}

.folder-children[b-uxymf95ga8] {
    padding-left: 20px;
}

.file-item[b-uxymf95ga8] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 36px;
    cursor: pointer;
    color: #555;
    text-decoration: none;
}

.file-item:hover[b-uxymf95ga8] {
    background: #f5f5f5;
    color: #000;
}

.file-item.active[b-uxymf95ga8] {
    background: #e6f7ff;
    color: #0078d4;
    border-right: 2px solid #0078d4;
}

.arrow[b-uxymf95ga8] {
    font-size: 10px;
    color: #999;
    width: 12px;
    display: inline-block;
}

.arrow.down[b-uxymf95ga8] {
    transform: rotate(90deg);
}

/* Content Pane */
.content-pane[b-uxymf95ga8] {
    flex: 1;
    background: #fff;
    min-width: 400px;
    user-select: text;
}

/* Document Container & TOC */
.document-container[b-uxymf95ga8] {
    display: flex;
    height: 100%;
    justify-content: space-between;
    min-width: 0;
    /* Prevent flex expansion */
}

.markdown-body[b-uxymf95ga8] {
    flex: 1;
    padding: 40px 20px;
    margin: 0;
    min-width: 0;
    /* Prevent flex expansion */
    box-sizing: border-box;
    overflow-x: auto;
    /* Allow wide tables/code to horizontal scroll internally */
    word-break: break-word;
    overflow-wrap: anywhere;
    /* Removed overflow-y: auto and scrollbar styling to let window scroll naturally */
}

/* Markdown Styling */
.doc-header-actions[b-uxymf95ga8] {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 32px;
}

.icon-btn[b-uxymf95ga8] {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.icon-btn:hover[b-uxymf95ga8] {
    background: #f0f0f0;
    color: #333;
}

.desktop-close-btn[b-uxymf95ga8] {
    display: block;
    /* Overrides mobile-close-btn generic 'none' for desktop */
    opacity: 0.5;
    transition: opacity 0.2s;
}

.desktop-close-btn:hover[b-uxymf95ga8] {
    opacity: 1;
}

.doc-title[b-uxymf95ga8] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #111;
    letter-spacing: -0.5px;
}

.doc-meta[b-uxymf95ga8] {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

/* Standard MD styles */
[b-uxymf95ga8] h1 {
    font-size: 2em;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3em;
    scroll-margin-top: 20px;
}

[b-uxymf95ga8] h2 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 16px;
    font-weight: 700;
    color: #222;
    scroll-margin-top: 20px;
}

[b-uxymf95ga8] h3 {
    font-size: 1.25em;
    margin-top: 1.25em;
    margin-bottom: 16px;
    font-weight: 600;
    scroll-margin-top: 20px;
}

[b-uxymf95ga8] p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
    font-size: 16px;
}

[b-uxymf95ga8] ul,
[b-uxymf95ga8] ol {
    padding-left: 2em;
    margin-bottom: 16px;
    line-height: 1.7;
}

[b-uxymf95ga8] code {
    background: #f6f8fa;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Consolas', monospace;
    font-size: 85%;
}

[b-uxymf95ga8] pre {
    background: #f6f8fa;
    padding: 16px;
    border-radius: 6px;
    overflow: auto;
    margin-bottom: 16px;
}

[b-uxymf95ga8] pre code {
    background: transparent;
    padding: 0;
    font-size: 100%;
}

[b-uxymf95ga8] blockquote {
    border-left: 4px solid #dfe2e5;
    padding: 0 1em;
    color: #6a737d;
    margin: 0 0 16px 0;
}

[b-uxymf95ga8] table {
    border-collapse: collapse;
    margin-bottom: 16px;
    width: 100%;
}

[b-uxymf95ga8] th,
[b-uxymf95ga8] td {
    border: 1px solid #dfe2e5;
    padding: 6px 13px;
}

[b-uxymf95ga8] th {
    background: #f6f8fa;
    font-weight: 600;
}

[b-uxymf95ga8] img {
    max-width: 100%;
    /*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    border-radius: 4px;
}

[b-uxymf95ga8] a {
    color: #0078d4;
    text-decoration: none;
}

[b-uxymf95ga8] a:hover {
    text-decoration: underline;
}

/* TOC Sidebar */
.toc-sidebar[b-uxymf95ga8] {
    width: 240px;
    border-left: 1px solid #eee;
    padding: 24px;
    background: #fbfbfb;
    flex-shrink: 0;
    display: none;

    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    scrollbar-width: thin;
}

@media (min-width: 1200px) {
    .toc-sidebar[b-uxymf95ga8] {
        display: block;
    }
}

.toc-header[b-uxymf95ga8] {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #888;
}

.toc-content ul[b-uxymf95ga8] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-content li[b-uxymf95ga8] {
    margin-bottom: 8px;
}

/* TOC Indentation */
.toc-level-1[b-uxymf95ga8] {
    padding-left: 0;
    font-weight: 600;
}

.toc-level-2[b-uxymf95ga8] {
    padding-left: 12px;
}

.toc-level-3[b-uxymf95ga8] {
    padding-left: 24px;
    font-size: 0.9em;
}

.toc-content a[b-uxymf95ga8] {
    color: #666;
    font-size: 13px;
    display: block;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.2s;
}

.toc-content a:hover[b-uxymf95ga8] {
    color: #0078d4;
    border-left-color: #0078d4;
}


.empty-state-large[b-uxymf95ga8] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    gap: 16px;
}

/* Landing Page / Project Index Styles */
.project-index-container[b-uxymf95ga8] {
    padding: 40px;
    width: 100%;
    overflow-y: auto;
    background: #f8f9fa;
}

.index-title[b-uxymf95ga8] {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.project-grid[b-uxymf95ga8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.project-card[b-uxymf95ga8] {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.project-card:hover[b-uxymf95ga8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-color: #d0d0d0;
}

.card-icon[b-uxymf95ga8] {
    width: 48px;
    height: 48px;
    background: #e6f7ff;
    color: #0078d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.card-title[b-uxymf95ga8] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}



[b-uxymf95ga8] pre {
    background: #f6f8fa;
    padding: 16px;
    border-radius: 6px;
    overflow: auto;
    margin-bottom: 16px;
}

[b-uxymf95ga8] pre code {
    background: transparent;
    padding: 0;
    font-size: 100%;
}

[b-uxymf95ga8] blockquote {
    border-left: 4px solid #dfe2e5;
    padding: 0 1em;
    color: #6a737d;
    margin: 0 0 16px 0;
}

[b-uxymf95ga8] table {
    border-collapse: collapse;
    margin-bottom: 16px;
    width: 100%;
}

[b-uxymf95ga8] th,
[b-uxymf95ga8] td {
    border: 1px solid #dfe2e5;
    padding: 6px 13px;
}

[b-uxymf95ga8] th {
    background: #f6f8fa;
    font-weight: 600;
}

[b-uxymf95ga8] img {
    max-width: 100%;
    /*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    border-radius: 4px;
}

[b-uxymf95ga8] a {
    color: #0078d4;
    text-decoration: none;
}

[b-uxymf95ga8] a:hover {
    text-decoration: underline;
}

/* TOC Sidebar */
.toc-sidebar[b-uxymf95ga8] {
    width: 240px;
    border-left: 1px solid #eee;
    padding: 24px;
    background: #fbfbfb;
    flex-shrink: 0;
    overflow-y: auto;
    display: none;
    scrollbar-width: thin;
}

/* Hide splitter when TOC is hidden */
@media (max-width: 1200px) {
    .splitter-toc[b-uxymf95ga8] {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .toc-sidebar[b-uxymf95ga8] {
        display: block;
    }
}

.toc-header[b-uxymf95ga8] {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #888;
}

.toc-content ul[b-uxymf95ga8] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-content li[b-uxymf95ga8] {
    margin-bottom: 8px;
}

/* TOC Indentation */
.toc-level-1[b-uxymf95ga8] {
    padding-left: 0;
    font-weight: 600;
}

.toc-level-2[b-uxymf95ga8] {
    padding-left: 12px;
}

.toc-level-3[b-uxymf95ga8] {
    padding-left: 24px;
    font-size: 0.9em;
}

.toc-content a[b-uxymf95ga8] {
    color: #666;
    font-size: 13px;
    display: block;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.2s;
}

.toc-content a:hover[b-uxymf95ga8] {
    color: #0078d4;
    border-left-color: #0078d4;
}


.empty-state-large[b-uxymf95ga8] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    gap: 16px;
}

/* Landing Page / Project Index Styles */
.project-index-container[b-uxymf95ga8] {
    padding: 40px;
    width: 100%;
    overflow-y: auto;
    background: #f8f9fa;
}

.index-title[b-uxymf95ga8] {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.project-grid[b-uxymf95ga8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.project-card[b-uxymf95ga8] {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.project-card:hover[b-uxymf95ga8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-color: #d0d0d0;
}

.card-icon[b-uxymf95ga8] {
    width: 48px;
    height: 48px;
    background: #e6f7ff;
    color: #0078d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.card-title[b-uxymf95ga8] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.card-desc[b-uxymf95ga8] {
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Floating Buttons (FAB) */
/* Mobile Floating Buttons (FAB) */
.doc-fab[b-uxymf95ga8] {
    display: none;
    position: fixed;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: #fff;
    /* White background */
    color: #333;
    /* Dark icon color */
    z-index: 1100;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    /* Elegant Shadow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Prevent selection */
    user-select: none;
    -webkit-user-select: none;
}

.doc-fab img[b-uxymf95ga8] {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
    /* Key fix: Ignore image for mouse events, pass through to button */
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.doc-fab:active[b-uxymf95ga8] {
    transform: scale(0.92);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.doc-fab:hover img[b-uxymf95ga8] {
    opacity: 1;
}

.fab-left[b-uxymf95ga8] {
    left: 20px;
}

.fab-right[b-uxymf95ga8] {
    right: 20px;
}

/* Backdrop */
.mobile-backdrop[b-uxymf95ga8] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1150;
    /* Below Pane (1200), Above FAB (1100) */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-backdrop.active[b-uxymf95ga8] {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Close Button inside Pane Header */
.mobile-close-btn[b-uxymf95ga8] {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    margin-left: auto;
}

/* Base override for desktop close functionality */
@media (min-width: 769px) {
    .desktop-close-btn[b-uxymf95ga8] {
        display: block;
    }
}

@media (max-width: 768px) {
    .doc-layout[b-uxymf95ga8] {
        position: relative;
    }

    /* Show FABs */
    .doc-fab[b-uxymf95ga8] {
        display: flex;
    }

    /* Hide Splitters on Mobile */
    .splitter[b-uxymf95ga8] {
        display: none !important;
    }

    /* SIDEBARS: Fullscreen Overlay Mode */
    .file-pane[b-uxymf95ga8],
    .toc-sidebar[b-uxymf95ga8] {
        position: fixed;
        inset: 0;
        /* Fullscreen */
        z-index: 1200;
        width: 100% !important;
        /* Override inline styles */
        transform: translateX(-100%);
        /* Default hidden Left */
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex !important;
        flex-direction: column;
        box-shadow: none;
    }

    .toc-sidebar[b-uxymf95ga8] {
        transform: translateX(100%);
        /* TOC hidden Right */
        border-left: none;
        /* Remove desktop border */
    }

    /* Active States */
    .file-pane.mobile-active[b-uxymf95ga8] {
        transform: translateX(0);
    }

    .toc-sidebar.mobile-active[b-uxymf95ga8] {
        transform: translateX(0);
    }

    /* Show Close Buttons */
    .mobile-close-btn[b-uxymf95ga8] {
        display: block;
    }

    .content-pane[b-uxymf95ga8] {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        /* Override generic 400px min-width */
        padding-bottom: 80px;
        box-sizing: border-box;
        overflow-x: hidden;
        /* Prevent padding from breaking 100% width */
    }

    /* Remove Overlay div if we use fullscreen panes */
    .mobile-sidebar-overlay[b-uxymf95ga8] {
        display: none;
    }

    /* Hide old toggle */
    .doc-mobile-toggle[b-uxymf95ga8] {
        display: none;
    }

    /* Fix Pane Content scrolling and safe area */
    .pane-content[b-uxymf95ga8] {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
        -webkit-overflow-scrolling: touch;
    }

    /* Improve touch targets */
    .folder-header[b-uxymf95ga8],
    .file-item[b-uxymf95ga8] {
        min-height: 48px;
        /* Easier to tap */
    }
}
/* /Components/Pages/Pages/GrassChat.razor.rz.scp.css */
.chat-landing[b-njsoj6rnvi] {
    position: relative;
    min-height: calc(100vh - var(--header-height, 72px));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fafbfa;
    overflow: hidden;
    padding: 60px 0;
}

.landing-bg-pattern[b-njsoj6rnvi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pixel[b-njsoj6rnvi] {
    position: absolute;
    background-color: var(--primary-light);
    opacity: 0.6;
}
.pixel-1[b-njsoj6rnvi] { width: 20px; height: 20px; top: 10%; right: 10%; }
.pixel-2[b-njsoj6rnvi] { width: 40px; height: 40px; top: 15%; right: 12%; background-color: var(--primary); opacity: 0.2; }
.pixel-3[b-njsoj6rnvi] { width: 15px; height: 15px; top: 25%; right: 8%; }
.pixel-4[b-njsoj6rnvi] { width: 30px; height: 30px; bottom: 20%; left: 45%; }
.pixel-5[b-njsoj6rnvi] { width: 25px; height: 25px; bottom: 15%; left: 42%; background-color: var(--primary); opacity: 0.15; }
.pixel-6[b-njsoj6rnvi] { width: 10px; height: 10px; bottom: 25%; left: 48%; }

.landing-container[b-njsoj6rnvi] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.landing-top-section[b-njsoj6rnvi] {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
}

.landing-left[b-njsoj6rnvi] {
    flex: 1 1 40%;
    max-width: 500px;
}

.badge-title[b-njsoj6rnvi] {
    margin-bottom: 16px;
}

.badge[b-njsoj6rnvi] {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.landing-title[b-njsoj6rnvi] {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.landing-subtitle[b-njsoj6rnvi] {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.landing-desc[b-njsoj6rnvi] {
    font-size: 16px;
    color: var(--text-secondary, #666);
    margin-bottom: 40px;
}

.landing-features-grid[b-njsoj6rnvi] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item[b-njsoj6rnvi] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon[b-njsoj6rnvi] {
    width: 32px;
    height: 32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.feature-icon svg[b-njsoj6rnvi] {
    width: 28px;
    height: 28px;
}

.feature-info h4[b-njsoj6rnvi] {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 4px;
}

.feature-info p[b-njsoj6rnvi] {
    font-size: 11px;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.landing-code-block[b-njsoj6rnvi] {
    background-color: rgba(245, 247, 245, 0.8);
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 12px;
    padding: 20px;
    font-family: var(--font-mono, monospace);
    font-size: 13px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.code-line[b-njsoj6rnvi] {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}
.code-line:last-child[b-njsoj6rnvi] {
    margin-bottom: 0;
}

.code-prompt[b-njsoj6rnvi] {
    color: var(--primary);
    font-weight: bold;
}
.code-cmd[b-njsoj6rnvi] {
    color: var(--primary-dark);
}
.code-comment[b-njsoj6rnvi] {
    color: var(--text-light, #999);
}

.landing-actions[b-njsoj6rnvi] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.action-btn-primary[b-njsoj6rnvi] {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    cursor: pointer;
    text-decoration: none;
}
.action-btn-primary:hover[b-njsoj6rnvi] {
    background-color: var(--primary-dark);
    color: white;
}
.action-btn-primary:active[b-njsoj6rnvi] {
    transform: scale(0.98);
}

.action-link[b-njsoj6rnvi] {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #1a1a1a);
    transition: color 0.2s;
    text-decoration: none;
}
.action-link:hover[b-njsoj6rnvi] {
    color: var(--primary);
}

.landing-right[b-njsoj6rnvi] {
    flex: 1 1 60%;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 0;
}

.chat-window-wrapper[b-njsoj6rnvi] {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.app-window-mockup.chat-mockup[b-njsoj6rnvi] {
    width: 100%;
    background: #1e1e20;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
}

.window-header[b-njsoj6rnvi] {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #18181b;
    border-bottom: 1px solid #27272a;
}

.header-left[b-njsoj6rnvi] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}
.app-logo[b-njsoj6rnvi] {
    width: 16px;
    height: 16px;
}
.window-title[b-njsoj6rnvi] {
    font-size: 13px;
    color: #eee;
    font-weight: 600;
}

.header-center[b-njsoj6rnvi] {
    font-size: 12px;
    color: #888;
}

.header-right[b-njsoj6rnvi] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-indicator[b-njsoj6rnvi] {
    font-size: 11px;
    color: var(--primary);
}

.window-controls[b-njsoj6rnvi] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn[b-njsoj6rnvi] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.control-btn.close[b-njsoj6rnvi] {
    border-radius: 0;
    position: relative;
}
.control-btn.close[b-njsoj6rnvi]::before, .control-btn.close[b-njsoj6rnvi]::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: #888;
    top: 4px;
    left: 0;
}
.control-btn.close[b-njsoj6rnvi]::before { transform: rotate(45deg); }
.control-btn.close[b-njsoj6rnvi]::after { transform: rotate(-45deg); }

.control-btn.max[b-njsoj6rnvi] {
    border-radius: 0;
    border: 1px solid #888;
}

.control-btn.min[b-njsoj6rnvi] {
    border-radius: 0;
    height: 1px;
    background: #888;
    align-self: flex-end;
    margin-bottom: 4px;
}

.chat-body[b-njsoj6rnvi] {
    display: flex;
    flex-direction: row;
    height: 460px;
    color: #aaa;
    font-size: 13px;
}

.chat-sidebar[b-njsoj6rnvi] {
    background: #18181b;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: hidden;
}
.left-sidebar[b-njsoj6rnvi] {
    width: 200px;
    border-right: 1px solid #27272a;
}
.right-sidebar[b-njsoj6rnvi] {
    width: 220px;
    border-left: 1px solid #27272a;
}

.section-title[b-njsoj6rnvi] {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.sidebar-item[b-njsoj6rnvi] {
    padding: 6px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
}
.sidebar-item.active[b-njsoj6rnvi] {
    background: rgba(31, 152, 62, 0.15);
    color: #fff;
}
.dot[b-njsoj6rnvi] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.dot.green[b-njsoj6rnvi] { background: var(--primary); }
.dot.orange[b-njsoj6rnvi] { background: #f59e0b; }

.sidebar-user-profile[b-njsoj6rnvi] {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}
.avatar[b-njsoj6rnvi] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
}
.user-info .name[b-njsoj6rnvi] {
    color: #eee;
    font-weight: 500;
    font-size: 12px;
}
.user-info .status[b-njsoj6rnvi] {
    color: var(--primary);
    font-size: 10px;
}
.user-actions[b-njsoj6rnvi] {
    margin-left: auto;
    color: #666;
    width: 16px;
    height: 16px;
}

.chat-main[b-njsoj6rnvi] {
    flex: 1;
    background: #1e1e20;
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topology-grid[b-njsoj6rnvi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.topo-node[b-njsoj6rnvi] {
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    min-width: 100px;
}
.node-icon[b-njsoj6rnvi] {
    width: 20px;
    height: 20px;
    color: var(--primary);
}
.node-name[b-njsoj6rnvi] {
    font-size: 12px;
    font-weight: 600;
}
.node-sub[b-njsoj6rnvi] {
    font-size: 10px;
    color: #888;
}

.topo-lines-1[b-njsoj6rnvi] {
    width: 2px;
    height: 20px;
    background: #3f3f46;
}

.topo-lines-branch[b-njsoj6rnvi] {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
}
.topo-lines-branch[b-njsoj6rnvi]::before {
    content: '';
    position: absolute;
    top: 0;
    width: 160px;
    height: 2px;
    background: #3f3f46;
}
.branch-line[b-njsoj6rnvi] {
    width: 2px;
    height: 20px;
    background: #3f3f46;
}

.topo-switches[b-njsoj6rnvi] {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.green-border[b-njsoj6rnvi] { border-color: var(--primary); }
.purple-border[b-njsoj6rnvi] { border-color: #a855f7; }
.orange-border[b-njsoj6rnvi] { border-color: #f59e0b; }

.topo-users[b-njsoj6rnvi] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}
.user-nodes-group[b-njsoj6rnvi] {
    display: flex;
    gap: 10px;
    min-width: 100px;
    justify-content: center;
}
.user-node[b-njsoj6rnvi] {
    background: #27272a;
    padding: 4px;
    border-radius: 4px;
    border: 1px dashed #555;
}
.u-avatar[b-njsoj6rnvi] {
    width: 24px;
    height: 24px;
    background: #444;
    border-radius: 50%;
}

.right-panel-header[b-njsoj6rnvi] {
    color: #eee;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 16px;
}
.panel-tabs[b-njsoj6rnvi] {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #27272a;
    padding-bottom: 8px;
    margin-bottom: 16px;
}
.panel-tabs span[b-njsoj6rnvi] {
    color: #666;
    cursor: pointer;
    font-size: 12px;
}
.panel-tabs span.active[b-njsoj6rnvi] {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.panel-section[b-njsoj6rnvi] {
    background: #27272a;
    border-radius: 6px;
    padding: 12px;
}
.rule-item[b-njsoj6rnvi] {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 8px;
    background: #1e1e20;
    padding: 6px;
    border-radius: 4px;
}
.stat-row[b-njsoj6rnvi] {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 6px;
}
.green-text[b-njsoj6rnvi] { color: var(--primary); }

.chat-bottom-scenarios[b-njsoj6rnvi] {
    margin-top: 20px;
}
.scenarios-title[b-njsoj6rnvi] {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
}
.scenarios-cards[b-njsoj6rnvi] {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.scenario-card[b-njsoj6rnvi] {
    flex: 1 1 300px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.scenario-card h4[b-njsoj6rnvi] {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}
.scenario-card ul[b-njsoj6rnvi] {
    color: var(--text-secondary);
    font-size: 13px;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scenario-img-mockup[b-njsoj6rnvi] {
    height: 120px;
    background: #18181b;
    border-radius: 8px;
    margin-top: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-topo[b-njsoj6rnvi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mini-node[b-njsoj6rnvi] {
    width: 30px; height: 16px; background: #3f3f46; border-radius: 4px;
}
.mini-line[b-njsoj6rnvi] {
    width: 2px; height: 10px; background: #555;
}

.mini-code[b-njsoj6rnvi] {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #abb2bf;
    padding: 16px;
    width: 100%;
}

.mini-chat[b-njsoj6rnvi] {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bubble[b-njsoj6rnvi] {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    max-width: 80%;
}
.bubble.left[b-njsoj6rnvi] {
    background: #27272a;
    color: #eee;
    align-self: flex-start;
}
.bubble.right[b-njsoj6rnvi] {
    background: var(--primary-dark);
    color: #fff;
    align-self: flex-end;
}

.bottom-horizontal-features.five-cols[b-njsoj6rnvi] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.bh-feature[b-njsoj6rnvi] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bh-icon[b-njsoj6rnvi] {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.bh-text strong[b-njsoj6rnvi] {
    display: block;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}
.bh-text span[b-njsoj6rnvi] {
    display: block;
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .bottom-horizontal-features.five-cols[b-njsoj6rnvi] {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    .landing-top-section[b-njsoj6rnvi] {
        flex-direction: column;
    }
    .landing-left[b-njsoj6rnvi], .landing-right[b-njsoj6rnvi] {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 992px) {
    .landing-features-grid[b-njsoj6rnvi] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .landing-subtitle[b-njsoj6rnvi] {
        font-size: 36px;
    }
    .scenarios-cards[b-njsoj6rnvi] {
        flex-direction: column;
    }
    .bottom-horizontal-features.five-cols[b-njsoj6rnvi] {
        grid-template-columns: repeat(2, 1fr);
    }
    .landing-actions[b-njsoj6rnvi] {
        justify-content: center;
    }
}
/* /Components/Pages/Pages/GrassGalEngine.razor.rz.scp.css */
.project-landing[b-wnyty6af21] {
    position: relative;
    min-height: calc(100vh - var(--header-height, 72px));
    display: flex;
    align-items: center;
    background-color: #fafbfa;
    overflow: hidden;
    padding: 60px 0;
}

.landing-bg-pattern[b-wnyty6af21] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pixel[b-wnyty6af21] {
    position: absolute;
    background-color: var(--primary-light);
    opacity: 0.6;
}
.pixel-1[b-wnyty6af21] { width: 20px; height: 20px; top: 10%; right: 10%; }
.pixel-2[b-wnyty6af21] { width: 40px; height: 40px; top: 15%; right: 12%; background-color: var(--primary); opacity: 0.2; }
.pixel-3[b-wnyty6af21] { width: 15px; height: 15px; top: 25%; right: 8%; }
.pixel-4[b-wnyty6af21] { width: 30px; height: 30px; bottom: 20%; left: 45%; }
.pixel-5[b-wnyty6af21] { width: 25px; height: 25px; bottom: 15%; left: 42%; background-color: var(--primary); opacity: 0.15; }
.pixel-6[b-wnyty6af21] { width: 10px; height: 10px; bottom: 25%; left: 48%; }

.landing-container[b-wnyty6af21] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
}

.landing-left[b-wnyty6af21] {
    flex: 1 1 40%;
    max-width: 500px;
}

.landing-title[b-wnyty6af21] {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.landing-subtitle[b-wnyty6af21] {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.landing-desc[b-wnyty6af21] {
    font-size: 18px;
    color: var(--text-secondary, #666);
    margin-bottom: 40px;
}

.landing-features-grid[b-wnyty6af21] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item[b-wnyty6af21] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon[b-wnyty6af21] {
    width: 32px;
    height: 32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.feature-icon svg[b-wnyty6af21] {
    width: 28px;
    height: 28px;
}

.feature-info h4[b-wnyty6af21] {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 4px;
}

.feature-info p[b-wnyty6af21] {
    font-size: 12px;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.landing-code-block[b-wnyty6af21] {
    background-color: rgba(245, 247, 245, 0.8);
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 12px;
    padding: 20px;
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.code-line[b-wnyty6af21] {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}
.code-line:last-child[b-wnyty6af21] {
    margin-bottom: 0;
}

.code-prompt[b-wnyty6af21] {
    color: var(--primary);
    font-weight: bold;
}
.code-cmd[b-wnyty6af21] {
    color: var(--primary-dark);
}
.code-comment[b-wnyty6af21] {
    color: var(--text-light, #999);
}

.landing-actions[b-wnyty6af21] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.action-btn-primary[b-wnyty6af21] {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    cursor: pointer;
    text-decoration: none;
}
.action-btn-primary:hover[b-wnyty6af21] {
    background-color: var(--primary-dark);
    color: white;
}
.action-btn-primary:active[b-wnyty6af21] {
    transform: scale(0.98);
}

.action-link[b-wnyty6af21] {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #1a1a1a);
    transition: color 0.2s;
    text-decoration: none;
}
.action-link:hover[b-wnyty6af21] {
    color: var(--primary);
}

.landing-right[b-wnyty6af21] {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.app-window-mockup[b-wnyty6af21] {
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.window-header[b-wnyty6af21] {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 16px;
    border-bottom: 1px solid var(--border, #e5e5e5);
    background: #ffffff;
}

.window-title[b-wnyty6af21] {
    font-size: 13px;
    color: #333;
}

.window-controls[b-wnyty6af21] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.control-btn[b-wnyty6af21] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.control-btn.close[b-wnyty6af21] {
    border-radius: 0;
    width: 14px;
    height: 14px;
    position: relative;
}
.control-btn.close[b-wnyty6af21]::before, .control-btn.close[b-wnyty6af21]::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: #666;
    top: 6px;
    left: 2px;
}
.control-btn.close[b-wnyty6af21]::before { transform: rotate(45deg); }
.control-btn.close[b-wnyty6af21]::after { transform: rotate(-45deg); }

.control-btn.max[b-wnyty6af21] {
    border-radius: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #666;
}

.control-btn.min[b-wnyty6af21] {
    border-radius: 0;
    width: 12px;
    height: 1px;
    background: #666;
    align-self: flex-end;
    margin-bottom: 4px;
}

.window-body[b-wnyty6af21] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-scene[b-wnyty6af21] {
    width: 100%;
    height: 100%;
    position: relative;
    background: url('https://images.s3.liubiligrass.com/2026/05/64dac2a778a9731514947bf86ce575c7.png') no-repeat center/cover;
}

.game-dialogue[b-wnyty6af21] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dialogue-text[b-wnyty6af21] {
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0;
}

.dialogue-actions[b-wnyty6af21] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.dialogue-actions span[b-wnyty6af21] {
    cursor: pointer;
    transition: color 0.2s;
}

.dialogue-actions span:hover[b-wnyty6af21] {
    color: white;
}

.dialogue-chevron[b-wnyty6af21] {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.bottom-features-grid[b-wnyty6af21] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 640px;
    text-align: center;
}

.b-feature strong[b-wnyty6af21] {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.b-feature span[b-wnyty6af21] {
    display: block;
    color: var(--text-secondary, #666);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .landing-container[b-wnyty6af21] {
        flex-direction: column;
    }
    .landing-left[b-wnyty6af21], .landing-right[b-wnyty6af21] {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .landing-features-grid[b-wnyty6af21], .bottom-features-grid[b-wnyty6af21] {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .landing-subtitle[b-wnyty6af21] {
        font-size: 36px;
    }
    .landing-actions[b-wnyty6af21] {
        justify-content: center;
    }
    .feature-item[b-wnyty6af21] {
        align-items: center;
        text-align: center;
    }
}
/* /Components/Pages/Pages/GrassNetease.razor.rz.scp.css */
.netease-landing[b-78xjcfnd5k] {
    position: relative;
    min-height: calc(100vh - var(--header-height, 72px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafbfa;
    overflow: hidden;
    padding: 60px 0;
}

.landing-bg-pattern[b-78xjcfnd5k] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pixel[b-78xjcfnd5k] {
    position: absolute;
    background-color: var(--primary-light);
    opacity: 0.6;
}
.pixel-1[b-78xjcfnd5k] { width: 20px; height: 20px; top: 10%; right: 10%; }
.pixel-2[b-78xjcfnd5k] { width: 40px; height: 40px; top: 15%; right: 12%; background-color: var(--primary); opacity: 0.2; }
.pixel-3[b-78xjcfnd5k] { width: 15px; height: 15px; top: 25%; right: 8%; }
.pixel-4[b-78xjcfnd5k] { width: 30px; height: 30px; bottom: 20%; left: 45%; }
.pixel-5[b-78xjcfnd5k] { width: 25px; height: 25px; bottom: 15%; left: 42%; background-color: var(--primary); opacity: 0.15; }
.pixel-6[b-78xjcfnd5k] { width: 10px; height: 10px; bottom: 25%; left: 48%; }

.landing-container[b-78xjcfnd5k] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.landing-left[b-78xjcfnd5k] {
    flex: 1 1 40%;
    max-width: 500px;
}

.badge-title[b-78xjcfnd5k] {
    margin-bottom: 16px;
}

.badge[b-78xjcfnd5k] {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.landing-title[b-78xjcfnd5k] {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.landing-subtitle[b-78xjcfnd5k] {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.landing-desc[b-78xjcfnd5k] {
    font-size: 16px;
    color: var(--text-secondary, #666);
    margin-bottom: 40px;
}

.landing-features-grid[b-78xjcfnd5k] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item[b-78xjcfnd5k] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon[b-78xjcfnd5k] {
    width: 32px;
    height: 32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.feature-icon svg[b-78xjcfnd5k] {
    width: 28px;
    height: 28px;
}
.icon-text.border-icon[b-78xjcfnd5k] {
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 4px;
    line-height: 1;
}

.feature-info h4[b-78xjcfnd5k] {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 4px;
}

.feature-info p[b-78xjcfnd5k] {
    font-size: 12px;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.landing-code-block[b-78xjcfnd5k] {
    background-color: rgba(245, 247, 245, 0.8);
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 12px;
    padding: 20px;
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.code-line[b-78xjcfnd5k] {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}
.code-line:last-child[b-78xjcfnd5k] {
    margin-bottom: 0;
}

.code-prompt[b-78xjcfnd5k] {
    color: var(--primary);
    font-weight: bold;
}
.code-cmd[b-78xjcfnd5k] {
    color: var(--primary-dark);
}
.code-comment[b-78xjcfnd5k] {
    color: var(--text-light, #999);
}

.landing-actions[b-78xjcfnd5k] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.action-btn-primary[b-78xjcfnd5k] {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    cursor: pointer;
    text-decoration: none;
}
.action-btn-primary:hover[b-78xjcfnd5k] {
    background-color: var(--primary-dark);
    color: white;
}
.action-btn-primary:active[b-78xjcfnd5k] {
    transform: scale(0.98);
}

.action-link[b-78xjcfnd5k] {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #1a1a1a);
    transition: color 0.2s;
    text-decoration: none;
}
.action-link:hover[b-78xjcfnd5k] {
    color: var(--primary);
}

.landing-right[b-78xjcfnd5k] {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 0;
}

.netease-window-wrapper[b-78xjcfnd5k] {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.app-window-mockup.dark-mode[b-78xjcfnd5k] {
    width: 100%;
    background: #202023;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
}

.window-header[b-78xjcfnd5k] {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #222225;
    border-bottom: 1px solid #111;
}

.header-left[b-78xjcfnd5k] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e50000;
}
.music-icon[b-78xjcfnd5k] {
    width: 16px;
    height: 16px;
}
.window-title[b-78xjcfnd5k] {
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
}

.window-controls[b-78xjcfnd5k] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn[b-78xjcfnd5k] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.control-btn.close[b-78xjcfnd5k] {
    border-radius: 0;
    width: 12px;
    height: 12px;
    position: relative;
}
.control-btn.close[b-78xjcfnd5k]::before, .control-btn.close[b-78xjcfnd5k]::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: #888;
    top: 5px;
    left: 0;
}
.control-btn.close[b-78xjcfnd5k]::before { transform: rotate(45deg); }
.control-btn.close[b-78xjcfnd5k]::after { transform: rotate(-45deg); }

.control-btn.max[b-78xjcfnd5k] {
    border-radius: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #888;
}

.control-btn.min[b-78xjcfnd5k] {
    border-radius: 0;
    width: 10px;
    height: 1px;
    background: #888;
    align-self: flex-end;
    margin-bottom: 4px;
}

.netease-body[b-78xjcfnd5k] {
    display: flex;
    flex-direction: row;
    height: 380px;
    color: #aaa;
    font-size: 13px;
    position: relative;
}

.netease-sidebar[b-78xjcfnd5k] {
    width: 180px;
    background: #202023;
    border-right: 1px solid #1a1a1c;
    padding: 16px 0;
    overflow-y: hidden;
}

.nav-item[b-78xjcfnd5k] {
    padding: 8px 24px;
    cursor: pointer;
}
.nav-item:hover[b-78xjcfnd5k] {
    background: #28282c;
    color: #fff;
}
.nav-section-title[b-78xjcfnd5k] {
    padding: 16px 24px 8px;
    font-size: 12px;
    color: #666;
}

.netease-main[b-78xjcfnd5k] {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #2b2b2f;
}

.netease-main[b-78xjcfnd5k]::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px; bottom: -20px; left: -20px;
    background-image: url('/images/netease_bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    opacity: 0.4;
    z-index: 0;
}

.netease-main[b-78xjcfnd5k]::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 43, 47, 0.6);
    z-index: 0;
}

.vinyl-record[b-78xjcfnd5k] {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 30%, #111 70%, #000 100%);
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 4px solid #111;
    z-index: 1;
}
.record-center[b-78xjcfnd5k] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #8e2b2b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tonearm[b-78xjcfnd5k] {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 6px;
    height: 100px;
    background: #eee;
    transform: rotate(30deg);
    transform-origin: top center;
    border-radius: 4px;
}

.lyrics-view[b-78xjcfnd5k] {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.lyric-line[b-78xjcfnd5k] {
    margin: 0;
    transition: all 0.3s;
}
.lyric-line.normal[b-78xjcfnd5k] {
    font-size: 14px;
    color: #666;
}
.lyric-line.highlight[b-78xjcfnd5k] {
    font-size: 20px;
    color: #e50000;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(229, 0, 0, 0.3);
}

.netease-footer[b-78xjcfnd5k] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #222225;
    border-top: 1px solid #1a1a1c;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.player-controls[b-78xjcfnd5k] {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.btn-play[b-78xjcfnd5k] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e50000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.btn-play[b-78xjcfnd5k]::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    margin-left: 4px;
}
.progress-bar[b-78xjcfnd5k] {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
}
.progress-bar[b-78xjcfnd5k]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: #e50000;
    border-radius: 2px;
}

.floating-features-panel[b-78xjcfnd5k] {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #111;
    border-radius: 12px;
    display: flex;
    padding: 20px 24px;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

.floating-item[b-78xjcfnd5k] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f-icon[b-78xjcfnd5k] {
    width: 36px;
    height: 36px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-icon svg[b-78xjcfnd5k] {
    width: 28px;
    height: 28px;
}

.f-text strong[b-78xjcfnd5k] {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.f-text span[b-78xjcfnd5k] {
    display: block;
    color: #888;
    font-size: 12px;
}

.bottom-horizontal-features[b-78xjcfnd5k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.bh-feature[b-78xjcfnd5k] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bh-icon[b-78xjcfnd5k] {
    width: 32px;
    height: 32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bh-icon svg[b-78xjcfnd5k] {
    width: 28px;
    height: 28px;
}

.bh-text strong[b-78xjcfnd5k] {
    display: block;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
}
.bh-text span[b-78xjcfnd5k] {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .landing-container[b-78xjcfnd5k] {
        flex-direction: column;
    }
    .landing-left[b-78xjcfnd5k], .landing-right[b-78xjcfnd5k] {
        max-width: 100%;
        width: 100%;
    }
    .floating-features-panel[b-78xjcfnd5k] {
        flex-direction: column;
        gap: 16px;
        bottom: auto;
        top: 100%;
        margin-top: 20px;
        position: relative;
    }
    .bottom-horizontal-features[b-78xjcfnd5k] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .landing-features-grid[b-78xjcfnd5k] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .landing-subtitle[b-78xjcfnd5k] {
        font-size: 36px;
    }
    .landing-actions[b-78xjcfnd5k] {
        justify-content: center;
    }
}
/* /Components/Pages/Pages/Members.razor.rz.scp.css */
/* 全局色调与背景设定 */
.vn-site-main[b-npw9aipx4x] {
    background-color: #fcfbf9;
    color: #333;
    font-family: "Noto Serif SC", "Songti SC", serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.vn-page-header[b-npw9aipx4x] {
    text-align: center;
    padding: 20px 0 10px 0;
    color: #b0a89d;
    letter-spacing: 4px;
    font-size: 12px;
}

/* ================= 顶部：角色选择器 ================= */
.vn-character-selector[b-npw9aipx4x] {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    flex-wrap: wrap;
    border-bottom: 1px dashed #e5e0d8;
    margin-bottom: 40px;
}

/* 包含缩略图和文字的父容器 */
.vn-selector-item[b-npw9aipx4x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .vn-selector-item:hover[b-npw9aipx4x] {
        opacity: 0.8;
        transform: translateY(-4px);
        filter: grayscale(40%);
    }

    .vn-selector-item.active[b-npw9aipx4x] {
        opacity: 1;
        filter: grayscale(0%);
        transform: translateY(0);
    }

.vn-thumbnail-wrapper[b-npw9aipx4x] {
    width: 60px;
    height: 80px;
    border: 2px solid transparent;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .vn-thumbnail-wrapper img[b-npw9aipx4x] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

.vn-thumb-placeholder[b-npw9aipx4x] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    font-family: sans-serif;
}

.vn-selector-item.active .vn-thumbnail-wrapper[b-npw9aipx4x] {
    border-color: #5ebd3e; /* 绿色高亮 */
    box-shadow: 0 4px 10px rgba(94, 189, 62, 0.4);
}

/* 缩略图下方的文字 */
.vn-thumb-label[b-npw9aipx4x] {
    font-size: 12px;
    color: #888;
    font-family: sans-serif;
    transition: color 0.3s ease;
}

.vn-selector-item.active .vn-thumb-label[b-npw9aipx4x] {
    color: #5ebd3e; /* 选中时文字变绿 */
    font-weight: bold;
}

/* ================= 主体内容 ================= */
.vn-member-section[b-npw9aipx4x] {
    padding: 40px 0 80px 0;
    position: relative;
    /* 每次 DOM 被 @key 强制刷新时，都会触发这个淡入淡出动画 */
    animation: fadeSwitch-b-npw9aipx4x 0.4s ease-in-out forwards;
}

@keyframes fadeSwitch-b-npw9aipx4x {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vn-container[b-npw9aipx4x] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* ================= 左侧：垂直姓名牌 ================= */
.vn-side-left[b-npw9aipx4x] {
    flex: 0 0 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.vn-name-board-wrapper[b-npw9aipx4x] {
    position: relative;
    margin-bottom: 60px;
}

.vn-dot-pattern[b-npw9aipx4x] {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(#5ebd3e 2px, transparent 2px);
    background-size: 8px 8px;
    z-index: 0;
}

.vn-name-board[b-npw9aipx4x] {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #333;
    padding: 40px 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}

.vn-name-en[b-npw9aipx4x] {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
    font-family: sans-serif;
    letter-spacing: 2px;
}

.vn-name-main[b-npw9aipx4x] {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 8px;
    margin: 0;
    color: #222;
}

.vn-name-cv[b-npw9aipx4x] {
    font-size: 12px;
    color: #666;
    margin-left: 15px;
    font-family: sans-serif;
    border-right: 1px solid #ccc;
    padding-right: 10px;
}


/* ================= 中间：人物立绘 ================= */
.vn-side-center[b-npw9aipx4x] {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    position: relative;
}

.vn-character-img[b-npw9aipx4x] {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.vn-character-placeholder[b-npw9aipx4x] {
    width: 300px;
    height: 450px;
    background: #e8e5df;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 10px;
}

/* ================= 右侧：信息详情 ================= */
.vn-side-right[b-npw9aipx4x] {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vn-catchphrase[b-npw9aipx4x] {
    margin-bottom: 20px;
}

    .vn-catchphrase h3[b-npw9aipx4x] {
        color: #5ebd3e;
        font-size: 24px;
        font-weight: bold;
        line-height: 1.5;
        text-shadow: 1px 1px 0px rgba(94, 189, 62, 0.2);
    }

.vn-desc-text[b-npw9aipx4x] {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: sans-serif;
}

/* 属性表格 */
.vn-profile-box[b-npw9aipx4x] {
    background: transparent;
}

.vn-profile-table[b-npw9aipx4x] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vn-profile-row[b-npw9aipx4x] {
    display: flex;
    align-items: flex-start;
    font-family: sans-serif;
    font-size: 13px;
}

.vn-profile-key[b-npw9aipx4x] {
    width: 100px;
    color: #3e8e2b;
    font-weight: bold;
    flex-shrink: 0;
}

.vn-profile-val[b-npw9aipx4x] {
    color: #444;
}

.vn-socials[b-npw9aipx4x] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vn-social-link[b-npw9aipx4x] {
    color: #666;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 12px;
}

    .vn-social-link:hover[b-npw9aipx4x] {
        background: #5ebd3e;
        color: #fff;
        border-color: #5ebd3e;
    }

/* 响应式设计 */
@media (max-width: 992px) {
    .vn-container[b-npw9aipx4x] {
        flex-direction: column;
        text-align: center;
    }

    .vn-side-left[b-npw9aipx4x], .vn-side-center[b-npw9aipx4x], .vn-side-right[b-npw9aipx4x] {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .vn-name-board[b-npw9aipx4x] {
        writing-mode: horizontal-tb;
        padding: 20px;
        flex-direction: column;
    }

    .vn-name-en[b-npw9aipx4x], .vn-name-cv[b-npw9aipx4x] {
        margin: 5px 0;
        border: none;
    }

    .vn-profile-row[b-npw9aipx4x] {
        text-align: left;
        justify-content: center;
    }
}
/* /Components/Pages/Pages/Project.razor.rz.scp.css */
/* Project Section */
.project-section[b-26rag74lak] {
    padding: 64px 0;
}

.project-grid[b-26rag74lak] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .project-grid[b-26rag74lak] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .project-grid[b-26rag74lak] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card[b-26rag74lak] {
    display: block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover[b-26rag74lak] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.project-image[b-26rag74lak] {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-surface);
    overflow: hidden;
}

.placeholder-img[b-26rag74lak] {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.project-card:hover .placeholder-img[b-26rag74lak] {
    transform: scale(1.05);
}

.project-content[b-26rag74lak] {
    padding: 24px;
}

.project-tags[b-26rag74lak] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag[b-26rag74lak] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.project-title[b-26rag74lak] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-desc[b-26rag74lak] {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-card:nth-child(1) .placeholder-img[b-26rag74lak] {
    background-image: url('/img/project/1.png');
}

.project-card:nth-child(2) .placeholder-img[b-26rag74lak] {
    background-image: url('/img/project/2.png');
}

.project-card:nth-child(3) .placeholder-img[b-26rag74lak] {
    background-image: url('/img/project/3.png');
}

.project-card:nth-child(4) .placeholder-img[b-26rag74lak] {
    background-image: url('/img/project/4.png');
}

.placeholder-img[b-26rag74lak] {
    background-image: url('/Web/img/project/1.png');
    background-size: cover;
    /* 图片按比例缩放，填满容器 */
    background-position: center;
    /* 居中显示 */
    background-repeat: no-repeat;
    /* 不重复平铺 */
}

/* Project Level 2 Content */
.project-features[b-26rag74lak] {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item[b-26rag74lak] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.feature-icon[b-26rag74lak] {
    font-size: 14px;
    color: var(--primary);
    width: 20px;
    display: inline-block;
    text-align: center;
}
/* /Components/Pages/Pages/Settings.razor.rz.scp.css */
.card[b-lyt61ceptk] {
    border-radius: 12px !important;
    overflow: hidden;
}

.form-control[b-lyt61ceptk] {
    border-radius: 8px !important;
}

.alert[b-lyt61ceptk] {
    border-radius: 12px !important;
}

.settings-sidebar-card .card-body[b-lyt61ceptk] {
    padding: 0 !important;
}

.list-group[b-lyt61ceptk] {
    padding: 0.6rem !important;
    border: none !important;
    margin: 0 !important;
}

.settings-sidebar-card[b-lyt61ceptk] {
    position: sticky;
    top: 2rem;
}

.list-group-item[b-lyt61ceptk] {
    border: none !important;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
    border-radius: 8px !important;
    margin-bottom: 2px;
}

.list-group-item:hover[b-lyt61ceptk] {
    background: rgba(var(--primary-rgb, 66, 133, 244), 0.05);
    color: var(--primary-color);
}

.list-group-item.active[b-lyt61ceptk] {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

.text-primary[b-lyt61ceptk] {
    color: var(--primary) !important;
}

.btn-primary[b-lyt61ceptk] {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover[b-lyt61ceptk] {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.status-toast[b-lyt61ceptk] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideIn-b-lyt61ceptk 0.3s ease-out;
    z-index: 1000;
}

.status-toast.success[b-lyt61ceptk] { background: #28a745; }
.status-toast.error[b-lyt61ceptk] { background: #dc3545; }

@keyframes slideIn-b-lyt61ceptk {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* /Components/Pages/Pages/Tools.razor.rz.scp.css */
.sidebar-header[b-y162zhp78m] {
    padding: 20px;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

.sidebar-header h3[b-y162zhp78m] {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color, #333);
    font-weight: 600;
}

.sidebar-nav[b-y162zhp78m] {
    padding: 10px 0;
}

.nav-category[b-y162zhp78m] {
    margin-bottom: 5px;
}

.category-header[b-y162zhp78m] {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--text-muted, #555);
    transition: background-color 0.2s;
    user-select: none;
}

.category-header:hover[b-y162zhp78m] {
    background-color: var(--hover-bg, #f1f3f5);
}

.category-header.expanded[b-y162zhp78m] {
    color: var(--text-color, #333);
    font-weight: 500;
}

.category-icon[b-y162zhp78m] {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.category-title[b-y162zhp78m] {
    flex-grow: 1;
    font-size: 0.95rem;
}

.category-arrow[b-y162zhp78m] {
    font-size: 0.7rem;
    color: var(--text-light, #999);
    transition: transform 0.2s ease;
}

.category-items[b-y162zhp78m] {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--category-items-bg, #fafafa);
}

.tool-item[b-y162zhp78m] {
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 48px;
    cursor: pointer;
    color: var(--text-color-light, #666);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.tool-item:hover[b-y162zhp78m] {
    background-color: var(--hover-bg, #f1f3f5);
    color: var(--text-color, #333);
}

.tool-item.active[b-y162zhp78m] {
    background-color: var(--active-bg, #e6f7ff);
    color: var(--primary-color, #1890ff);
    border-right: 3px solid var(--primary-color, #1890ff);
}

.tool-icon[b-y162zhp78m] {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    color: inherit;
    opacity: 0.8;
}

.tool-name[b-y162zhp78m] {
    flex-grow: 1;
}

.tool-header[b-y162zhp78m] {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

.tool-header h2[b-y162zhp78m] {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    color: var(--text-color, #333);
}

.tool-desc[b-y162zhp78m] {
    margin: 0;
    color: var(--text-color-light, #666);
    font-size: 1rem;
}

.tool-body[b-y162zhp78m] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tool-placeholder[b-y162zhp78m] {
    margin-top: 50px;
    text-align: center;
    color: var(--text-light, #999);
}

.tool-placeholder .icon[b-y162zhp78m] {
    margin-bottom: 20px;
    color: var(--placeholder-icon, #ccc);
    display: flex;
    justify-content: center;
}

.tool-placeholder h3[b-y162zhp78m] {
    margin: 0 0 10px 0;
    color: var(--text-color-light, #666);
}

.empty-state[b-y162zhp78m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light, #999);
}

.empty-state .icon[b-y162zhp78m] {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.empty-state h3[b-y162zhp78m] {
    margin: 0 0 10px 0;
    color: var(--text-color-light, #666);
}
/* /Components/UI/Showcase.razor.rz.scp.css */
.showcase-outer[b-4u6ienwzg9] {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    margin-bottom: 80px;
    overflow: hidden;
}

.showcase-outer[b-4u6ienwzg9]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.showcase-inner[b-4u6ienwzg9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-label[b-4u6ienwzg9] {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.showcase-title[b-4u6ienwzg9] {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.showcase-description[b-4u6ienwzg9] {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.showcase-actions[b-4u6ienwzg9] {
    display: flex;
    gap: 16px;
}

.showcase-visual[b-4u6ienwzg9] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .showcase-inner[b-4u6ienwzg9] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-actions[b-4u6ienwzg9] {
        justify-content: center;
    }

    .showcase-title[b-4u6ienwzg9] {
        font-size: 32px;
    }
}
/* /Components/UI/Timeline.razor.rz.scp.css */
.timeline-wrapper[b-tweublx6u5] {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 0;
}

.timeline-line[b-tweublx6u5] {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item[b-tweublx6u5] {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.timeline-item.right[b-tweublx6u5] {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot[b-tweublx6u5] {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-card[b-tweublx6u5] {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 90%;
    transition: transform 0.3s ease;
}

.timeline-item.left .timeline-card[b-tweublx6u5] {
    margin-right: 30px;
    text-align: right;
}

.timeline-item.right .timeline-card[b-tweublx6u5] {
    margin-left: 30px;
    text-align: left;
}

.timeline-card:hover[b-tweublx6u5] {
    transform: translateY(-5px);
}

.timeline-date[b-tweublx6u5] {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.timeline-content h3[b-tweublx6u5] {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.timeline-content p[b-tweublx6u5] {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line[b-tweublx6u5] {
        left: 20px;
    }

    .timeline-item[b-tweublx6u5], .timeline-item.right[b-tweublx6u5] {
        justify-content: flex-start;
        padding-left: 45px;
        padding-right: 0;
    }

    .timeline-dot[b-tweublx6u5] {
        left: 20px;
    }

    .timeline-item.left .timeline-card[b-tweublx6u5],
    .timeline-item.right .timeline-card[b-tweublx6u5] {
        margin: 0;
        text-align: left;
        width: 100%;
    }
}
/* /Components/UI/TwoColumnLayout.razor.rz.scp.css */
.two-column-layout[b-ycl76g3ukx] {
    display: flex;
    height: calc(100vh - 60px);
    background-color: var(--bg-color, #f8f9fa);
}

.sidebar[b-ycl76g3ukx] {
    width: 260px;
    background-color: var(--sidebar-bg, #ffffff);
    border-right: 1px solid var(--border-color, #eaeaea);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.main-content[b-ycl76g3ukx] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: var(--main-bg, #ffffff);
    overflow-y: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .two-column-layout[b-ycl76g3ukx] {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 60px);
    }

    .sidebar[b-ycl76g3ukx] {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color, #eaeaea);
        max-height: 40vh;
        /* Don't let sidebar take up the whole screen if it has many items */
    }

    .main-content[b-ycl76g3ukx] {
        padding: 16px;
        overflow-y: visible;
        /* Let it flow normally */
    }
}
