/* 基础重置与变量 */
:root {
    --yv63-bg-dark: #090e14;
    --yv63-bg-surface: #121921;
    --yv63-bg-card: #1a232c;
    --yv63-accent: #00e699;
    --yv63-accent-hover: #00ffaa;
    --yv63-text-main: #e2e8f0;
    --yv63-text-muted: #8b9bb4;
    --yv63-border: #2a3542;
    --yv63-terminal-bg: #05080c;
    --yv63-font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --yv63-font-mono: "Fira Code", Consolas, Monaco, "Courier New", monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--yv63-font-sans);
    background-color: var(--yv63-bg-dark);
    color: var(--yv63-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 导航栏样式 (复用首页结构) */
.yv63-weluwi {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(9, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--yv63-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    flex-wrap: wrap;
}

.yv63-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.yv63-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.yv63-ujalog {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.yv63-nav-link {
    color: var(--yv63-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
}

.yv63-nav-link:hover {
    color: var(--yv63-accent);
    background: rgba(0, 230, 153, 0.08);
}

.yv63-nav-link.active {
    color: var(--yv63-accent);
    background: rgba(0, 230, 153, 0.12);
}

/* Hero展示区 */
.yv63-onina {
    margin-top: 72px;
    padding: 96px 5% 64px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 230, 153, 0.15) 0%, transparent 40%),
                linear-gradient(180deg, var(--yv63-bg-surface) 0%, var(--yv63-bg-dark) 100%);
    border-bottom: 1px solid var(--yv63-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.yv63-ovir {
    max-width: 900px;
    width: 100%;
    text-align: center;
    min-width: 0;
}

.yv63-onina h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--yv63-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal;
}

.yv63-onina p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--yv63-text-muted);
    max-width: 700px;
    margin: 0 auto;
    word-break: keep-all;
}

/* 主内容布局 (双栏侧边导航) */
.yv63-iceyofe {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 64px 5%;
    gap: 48px;
    align-items: flex-start;
}

/* 侧边索引菜单 */
.yv63-ahiv {
    flex: 1 1 240px;
    min-width: 240px;
}

.yv63-wasohol {
    position: sticky;
    top: 104px;
    background: var(--yv63-bg-surface);
    border: 1px solid var(--yv63-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yv63-wasohol p {
    font-size: 0.85rem;
    color: var(--yv63-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.yv63-wila {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--yv63-text-main);
    background: var(--yv63-bg-card);
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 0;
}

.yv63-wila svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--yv63-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.yv63-wila:hover {
    background: rgba(0, 230, 153, 0.05);
    border-color: var(--yv63-accent);
    transform: translateX(4px);
}

/* 指令内容区 */
.yv63-owihik {
    flex: 3 1 600px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.yv63-owihik > p {
    color: var(--yv63-text-muted);
    font-size: 0.95rem;
    border-left: 3px solid var(--yv63-accent);
    padding-left: 16px;
    background: var(--yv63-bg-surface);
    padding: 16px;
    border-radius: 0 8px 8px 0;
}

/* 指令分类区块 */
.yv63-cazuzur {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.yv63-cazuzur h2 {
    font-size: 1.8rem;
    color: #fff;
    border-bottom: 1px solid var(--yv63-border);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: normal;
}

.yv63-cazuzur h2::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--yv63-accent);
    border-radius: 2px;
}

/* 单个指令卡片 */
.yv63-rokora {
    background: var(--yv63-bg-surface);
    border: 1px solid var(--yv63-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    transition: box-shadow 0.3s ease;
}

.yv63-rokora:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-color: rgba(0, 230, 153, 0.3);
}

/* 终端代码呈现 */
.yv63-aricod {
    font-family: var(--yv63-font-mono);
    font-size: 1rem;
    color: var(--yv63-accent);
    background: var(--yv63-terminal-bg);
    padding: 16px 20px;
    border-radius: 8px;
    position: relative;
    overflow-x: auto;
    border-left: 4px solid var(--yv63-accent);
}

.yv63-aricod::before {
    content: ">";
    color: var(--yv63-text-muted);
    margin-right: 12px;
    user-select: none;
}

.yv63-rokora p {
    color: var(--yv63-text-main);
    font-size: 1rem;
    line-height: 1.7;
    word-break: keep-all;
}

.yv63-rokora ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.yv63-rokora li {
    font-size: 0.95rem;
    color: var(--yv63-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.yv63-rokora li::before {
    content: "•";
    color: var(--yv63-accent);
    font-weight: bold;
}

.yv63-rokora code {
    font-family: var(--yv63-font-mono);
    background: var(--yv63-terminal-bg);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* 页脚样式 */
.yv63-julihu {
    background: var(--yv63-terminal-bg);
    border-top: 1px solid var(--yv63-border);
    padding: 64px 5% 32px;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yv63-gevab {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-width: 0;
}

.yv63-footer-brand {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.yv63-footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
}

.yv63-footer-links a {
    color: var(--yv63-text-muted);
    font-size: 0.95rem;
}

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

.yv63-copyright {
    color: var(--yv63-text-muted);
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid var(--yv63-border);
    padding-top: 32px;
    width: 100%;
}

/* 响应式断点 */
@media (max-width: 900px) {
    .yv63-iceyofe {
        flex-direction: column;
    }
    
    .yv63-ahiv {
        width: 100%;
    }
    
    .yv63-wasohol {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .yv63-wila {
        flex: 1 1 150px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .yv63-ujalog {
        display: none; /* 移动端隐藏顶部菜单，可由JS接管汉堡菜单 */
    }
    
    .yv63-onina {
        padding: 80px 5% 48px;
    }
    
    .yv63-cazuzur h2 {
        font-size: 1.5rem;
    }
    
    .yv63-aricod {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .yv63-footer-links {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

.yv63-hdr-weluwi {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-hdr-weluwi,
.yv63-hdr-weluwi *,
.yv63-hdr-weluwi *::before,
.yv63-hdr-weluwi *::after {
    box-sizing: border-box;
}

.yv63-hdr-weluwi nav,
.yv63-hdr-weluwi div,
.yv63-hdr-weluwi section,
.yv63-hdr-weluwi article,
.yv63-hdr-weluwi aside,
.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6,
.yv63-hdr-weluwi a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-hdr-weluwi p,
.yv63-hdr-weluwi h1,
.yv63-hdr-weluwi h2,
.yv63-hdr-weluwi h3,
.yv63-hdr-weluwi h4,
.yv63-hdr-weluwi h5,
.yv63-hdr-weluwi h6 {
    text-decoration: none;
}

.yv63-hdr-weluwi img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-hdr-weluwi {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.yv63-hdr-weluwi a.yv63-hdr-nav-link,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:hover,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:focus,
.yv63-hdr-weluwi a.yv63-hdr-nav-link:active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link.active,
.yv63-hdr-weluwi a.yv63-hdr-nav-link[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.yv63-hdr-weluwi{
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1320px;
            background: rgba(24, 27, 33, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 16px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

.yv63-hdr-weluwi .yv63-hdr-logo img{
            height: 32px;
            width: auto;
        }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link{
            font-size: 0.95rem;
            color: #e2e8f0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link:hover{
            color: #00e5ff;
        }

.yv63-hdr-weluwi .yv63-hdr-nav-link.active{
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
        }

@media (max-width: 768px){.yv63-hdr-weluwi{
                flex-direction: column;
                gap: 16px;
                border-radius: 16px;
                padding: 16px;
            }

.yv63-hdr-weluwi .yv63-hdr-ujalog{
                justify-content: center;
            }}

.yv63-ftr-julihu {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.yv63-ftr-julihu,
.yv63-ftr-julihu *,
.yv63-ftr-julihu *::before,
.yv63-ftr-julihu *::after {
    box-sizing: border-box;
}

.yv63-ftr-julihu nav,
.yv63-ftr-julihu div,
.yv63-ftr-julihu section,
.yv63-ftr-julihu article,
.yv63-ftr-julihu aside,
.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6,
.yv63-ftr-julihu a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.yv63-ftr-julihu p,
.yv63-ftr-julihu h1,
.yv63-ftr-julihu h2,
.yv63-ftr-julihu h3,
.yv63-ftr-julihu h4,
.yv63-ftr-julihu h5,
.yv63-ftr-julihu h6 {
    text-decoration: none;
}

.yv63-ftr-julihu img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.yv63-ftr-julihu {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.yv63-ftr-julihu a,
.yv63-ftr-julihu a:hover,
.yv63-ftr-julihu a:focus,
.yv63-ftr-julihu a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.yv63-ftr-julihu{
            background: #0a0b0e;
            padding: 64px 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 64px;
            display: flex;
            justify-content: center;
        }

.yv63-ftr-julihu .yv63-ftr-gevab{
            max-width: 1320px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-brand{
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a{
            color: #94a3b8;
            font-size: 0.95rem;
        }

.yv63-ftr-julihu .yv63-ftr-footer-links a:hover{
            color: #00e5ff;
        }

.yv63-ftr-julihu .yv63-ftr-copyright{
            width: 100%;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }