:root {
    --zen-bg: #030c08;
    --zen-card-bg: #0a1410;
    --zen-border: rgba(16, 185, 129, 0.2);
    --zen-border-hover: rgba(16, 185, 129, 0.7);
    --zen-text: #e0f2fe;
    --zen-sub: #5c7068;
    --zen-accent: #10b981;
    --zen-font: 'JetBrains Mono', monospace;
}

body {
    margin: 0; background: var(--zen-bg); color: var(--zen-text);
    font-family: var(--zen-font); font-size: 13px; -webkit-font-smoothing: antialiased;
}

.zen-header {
    position: fixed; top: 0; width: 100%; height: 56px;
    background: rgba(3, 12, 8, 0.95); backdrop-filter: blur(8px);
    z-index: 2000; border-bottom: 1px solid var(--zen-border);
}

.zen-inner {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
}

.zen-logo-nav { display: flex; align-items: center; gap: 30px; }
.zen-logo img { height: 20px; }
.zen-nav { display: flex; list-style: none; gap: 24px; margin: 0; padding: 0; }
.zen-nav a { color: var(--zen-sub); text-decoration: none; font-weight: bold; }
.zen-nav a:hover, .zen-nav a.active { color: var(--zen-accent); }
.zen-user-zone { display: flex; align-items: center; gap: 16px; }
.zen-btn-login { background: var(--zen-accent); color: #000; padding: 6px 12px; text-decoration: none; font-size: 11px; font-weight: bold; }
.zen-avatar { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--zen-border); }
.zen-m-trigger { display: none; color: var(--zen-text); font-size: 20px; cursor: pointer; }

/* 留白通告 */
.zen-notice-bar { margin: 80px auto 20px; max-width: 1200px; padding: 0 20px; }
.zen-notice-inner { border: 1px solid var(--zen-border); padding: 12px 20px; background: var(--zen-card-bg); display: flex; align-items: center; }
.zen-notice-dot { width: 6px; height: 6px; background: var(--zen-accent); border-radius: 50%; margin-right: 12px; }

/* 页脚 */
.zen-footer { padding: 40px 0; background: #010403; border-top: 1px solid var(--zen-border); margin-top: 60px; }
.zen-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.zen-copyright { font-size: 11px; color: var(--zen-sub); display: flex; align-items: center; }
.zen-status-indicator { width: 6px; height: 6px; background: var(--zen-accent); border-radius: 50%; margin-right: 10px; }

/* 布局 637: 左右50/50对开 ➡️ 左舆图通告 ➡️ 右双通道舆图高度测量商品 */
.zen-home-wrap { max-width: 1200px; margin: 40px auto; padding: 0 20px; min-height: 80vh; }
.zen-split-half { display: flex; gap: 40px; }

/* 左舆图通告 */
.zen-left-panel {
    flex: 1; background: var(--zen-card-bg); border: 1px solid var(--zen-border);
    padding: 30px; position: sticky; top: 100px; height: fit-content;
}
.zen-panel-title { font-size: 13px; font-weight: bold; color: var(--zen-accent); margin-bottom: 20px; text-transform: uppercase; }
.zen-panel-line { height: 1px; background: var(--zen-border); margin: 15px 0; }

/* 右双通道高度测量商品 */
.zen-right-panel { flex: 1; }

.zen-cat-hd { font-size: 14px; font-weight: bold; color: var(--zen-text); margin: 0 0 25px; display: flex; align-items: center; }
.zen-cat-hd::after { content: ""; flex: 1; height: 1px; background: var(--zen-border); margin-left: 20px; }
.zen-cat-hd::before { content: "▲ "; color: var(--zen-accent); margin-right: 8px; }

.zen-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.zen-card-probe { display: block; background: var(--zen-card-bg); text-decoration: none; transition: 0.3s; padding: 20px; position: relative; border: 1px solid var(--zen-border); }
.zen-card-probe:hover { border-color: var(--zen-accent); box-shadow: 0 0 15px rgba(16, 185, 129, 0.25); }
.zen-card-probe:hover .zen-name { color: var(--zen-accent); }

.zen-img-box { width: 100%; aspect-ratio: 1.8; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #010403; }
.zen-img-box img { width: 45%; height: 45%; object-fit: contain; }
.zen-name { font-size: 14px; height: 38px; color: var(--zen-text); line-height: 1.5; overflow: hidden; margin-bottom: 15px; }
.zen-footer-meta { display: flex; justify-content: space-between; align-items: center; }
.zen-price { font-size: 16px; font-weight: bold; color: var(--zen-accent); }
.zen-sell-count { font-size: 11px; color: var(--zen-sub); }
.zen-tag-auto { position: absolute; top: 10px; right: 10px; font-size: 9px; color: var(--zen-accent); border: 1px solid var(--zen-accent); padding: 1px 4px; }

/* Detail Pages */
.zen-trade-wrap { padding: 40px 10px; min-height: 80vh; }
.zen-trade-node { max-width: 900px; margin: 0 auto; border: 1px solid var(--zen-border); display: flex; flex-wrap: wrap; background: var(--zen-card-bg); }
.zen-media-side { flex: 0 0 32%; background: #010403; padding: 30px; display: flex; align-items: center; border-right: 1px solid var(--zen-border); }
.zen-media-side img { width: 100%; height: auto; }
.zen-form-side { flex: 1; padding: 40px; min-width: 320px; }
.zen-title { font-size: 22px; font-weight: 700; color: var(--zen-text); margin-bottom: 10px; }
.zen-tag-status { display: inline-block; padding: 3px 8px; border: 1px solid var(--zen-accent); color: var(--zen-accent); font-size: 11px; background: rgba(16, 185, 129, 0.1); margin-bottom: 25px; }
.zen-price-node { margin-bottom: 30px; padding: 20px; background: var(--zen-bg); border: 1px solid var(--zen-border); display: flex; justify-content: space-between; align-items: center; }
.zen-price-val { font-size: 26px; font-weight: 800; color: var(--zen-accent); }
.zen-field { margin-bottom: 20px; }
.zen-label { display: block; font-size: 11px; color: var(--zen-sub); margin-bottom: 8px; }
.zen-input { width: 100%; height: 44px; background: var(--zen-bg); border: 1px solid var(--zen-border); color: var(--zen-text); padding: 0 15px; box-sizing: border-box; outline: none; }
.zen-input:focus { border-color: var(--zen-accent); }
.zen-btn-submit { width: 100%; height: 48px; background: var(--zen-accent); color: #000; border: none; cursor: pointer; font-size: 14px; font-weight: 700; transition: 0.3s; }
.zen-btn-submit:hover { opacity: 0.8; }
.zen-btn-submit:disabled { background: #13221b; color: #435b4f; border: 1px solid var(--zen-border); cursor: not-allowed; }
.zen-desc-box { max-width: 900px; margin: 20px auto 0; border: 1px solid var(--zen-border); padding: 30px; background: var(--zen-card-bg); color: var(--zen-sub); }
.zen-desc-title { font-size: 12px; font-weight: 700; color: var(--zen-text); margin-bottom: 15px; border-left: 2px solid var(--zen-accent); padding-left: 10px; }

/* Queries & Lists */
.zen-query-wrap { max-width: 520px; margin: 80px auto; padding: 0 20px; min-height: 70vh; }
.zen-query-node { background: var(--zen-card-bg); border: 1px solid var(--zen-border); padding: 30px; margin-bottom: 20px; }
.zen-btn-prime { background: var(--zen-accent); color: #000; border: none; padding: 12px 30px; font-weight: 700; font-size: 13px; cursor: pointer; width: 100%; }

@media (max-width: 768px) {
    .zen-split-half { flex-direction: column-reverse; }
    .zen-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .zen-header { position: relative; }
    .zen-nav { position: fixed; top: 56px; left: -100%; width: 100%; height: 100vh; background: var(--zen-bg); flex-direction: column; padding: 40px; transition: 0.3s; gap: 30px; }
    .zen-nav.is-open { left: 0; }
    .zen-m-trigger { display: block; }
}