:root {
  --theme-primary: #e36940;
  --theme-primary-hover: #ff7c52;
  --theme-bg-dark: #0a0d14;
  --theme-bg-surface: #121722;
  --theme-bg-tablet: #1a2130;
  --theme-text-main: #f0f4fc;
  --theme-text-sub: #94a3b8;
  --theme-accent-teal: #00d8d6;
  --theme-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --theme-glow: 0 0 35px rgba(227, 105, 64, 0.25);
  --radius-main: 20px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--theme-bg-dark);
  color: var(--theme-text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* 导航栏复用与规范 */
.omnibar-socket {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.emblem-casing {
  display: flex;
  align-items: center;
  min-width: 0;
}

.emblem-casing img {
  height: 36px;
  width: auto;
  display: block;
}

.prose-raster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.glyph-trigger {
  color: var(--theme-text-sub);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 12px;
  transition: all 0.35s ease;
  word-break: break-word;
}

.glyph-trigger:hover,
.glyph-trigger.active {
  color: #ffffff;
  background: rgba(227, 105, 64, 0.18);
  border: 1px solid rgba(227, 105, 64, 0.3);
}

/* 主内容布局基准 */
main {
  width: 100%;
  display: block;
}

.zenith-sandbox {
  min-height: 75vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 6% 60px 6%;
  background: radial-gradient(circle at 80% 20%, rgba(227, 105, 64, 0.15) 0%, rgba(10, 13, 20, 0) 60%), linear-gradient(135deg, #0a0d14 0%, #121824 100%);
  border-bottom: 1px solid #1e2638;
}

.canvass-raster {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
  align-items: center;
}

.canvass-socket {
  flex: 1 1 500px;
  min-width: 0;
  word-break: break-word;
}

.pixel-zenith {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  white-space: normal;
  word-break: keep-all;
}

.pixel-zenith span {
  color: var(--theme-primary);
  background: linear-gradient(90deg, #e36940, #ff9473);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.caption-zenith {
  font-size: 18px;
  color: var(--theme-text-sub);
  margin-bottom: 36px;
  max-width: 640px;
  word-break: break-word;
}

.cluster-casing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.docket-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 14px;
  color: var(--theme-text-main);
}

.docket-tag svg {
  width: 16px;
  height: 16px;
  fill: var(--theme-primary);
}

.prompt-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--theme-primary);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(227, 105, 64, 0.35);
  transition: all 0.35s ease;
  word-break: break-word;
}

.prompt-trigger:hover {
  background: var(--theme-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(227, 105, 64, 0.45);
}

.viewport-stage {
  flex: 1 1 450px;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.tablet-mock {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #182030, #0d121c);
  border-radius: var(--radius-main);
  border: 1px solid #263147;
  padding: 24px;
  box-shadow: var(--theme-shadow), var(--theme-glow);
}

.mock-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mock-prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.row-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.row-trace {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(227, 105, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
}

.row-pixel {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-text-main);
}

.row-sub {
  font-size: 12px;
  color: var(--theme-text-sub);
}

.row-pulse {
  width: 40px;
  height: 22px;
  background: var(--theme-primary);
  border-radius: 12px;
  position: relative;
}

.row-pulse::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
}

/* 热门插件展示网格 (div 块) */
.viewport-raster {
  padding: 90px 6%;
  background: var(--theme-bg-surface);
}

.pixel-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
  word-break: break-word;
}

.pixel-pixel {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.caption-sub {
  font-size: 16px;
  color: var(--theme-text-sub);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.docket-tablet {
  background: var(--theme-bg-tablet);
  border-radius: var(--radius-main);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  word-break: break-word;
}

.docket-tablet:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 105, 64, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.docket-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.stamp-trace {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(227, 105, 64, 0.2), rgba(227, 105, 64, 0.05));
  border: 1px solid rgba(227, 105, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--theme-primary);
}

.docket-meta {
  flex: 1;
  min-width: 0;
}

.docket-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.docket-version {
  font-size: 12px;
  color: var(--theme-accent-teal);
  background: rgba(0, 216, 214, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.docket-desc {
  font-size: 14px;
  color: var(--theme-text-sub);
  margin-bottom: 24px;
  line-height: 1.6;
}

.docket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #ffbd2e;
}

.pulse-trigger {
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.docket-tablet:hover .pulse-trigger {
  background: var(--theme-primary);
  color: #ffffff;
}

/* 分类拆解区 (aside 块) */
.matrix-socket {
  padding: 90px 6%;
  background: var(--theme-bg-dark);
  border-top: 1px solid #1e2638;
}

.category-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.cat-box {
  background: rgba(18, 23, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-main);
  padding: 28px;
  transition: all 0.35s ease;
}

.cat-box:hover {
  background: rgba(24, 32, 48, 0.9);
  border-color: rgba(0, 216, 214, 0.3);
}

.cat-trace {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 216, 214, 0.15);
  color: var(--theme-accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cat-pixel {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.cat-prose {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-index {
  font-size: 14px;
  color: var(--theme-text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-index::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-primary);
}

/* 安装指南区块 (section 块) */
.canvass-sandbox {
  padding: 90px 6%;
  background: linear-gradient(180deg, #121722 0%, #0a0d14 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.step-packet {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-main);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(227, 105, 64, 0.3);
  margin-bottom: 16px;
}

.step-pixel {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--theme-text-sub);
  line-height: 1.6;
}

/* 页脚底层 (section 包裹) */
.bedrock-socket {
  background: #06080e;
  padding: 70px 6% 40px 6%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ledger-raster {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.brand-docket {
  flex: 1 1 300px;
  min-width: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.brand-desc {
  font-size: 14px;
  color: var(--theme-text-sub);
  max-width: 320px;
}

.links-casing {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  min-width: 0;
}

.glyph-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-head {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.foot-glyph {
  color: var(--theme-text-sub);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.35s ease;
  word-break: break-word;
}

.foot-glyph:hover {
  color: var(--theme-primary);
}

.copyright-cluster {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(148, 163, 184, 0.6);
}

/* 响应式断点适配 */
@media (max-width: 768px) {
  .omnibar-socket {
    padding: 14px 4%;
  }
  .prose-raster {
    gap: 6px;
  }
  .glyph-trigger {
    padding: 6px 12px;
    font-size: 13px;
  }
  .zenith-sandbox,
  .viewport-raster,
  .matrix-socket,
  .canvass-sandbox {
    padding-left: 4%;
    padding-right: 4%;
  }
  .pixel-zenith {
    font-size: 28px;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
}

.omnibar-omnibar-socket {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text-main);
}
.omnibar-omnibar-socket,
.omnibar-omnibar-socket *,
.omnibar-omnibar-socket *::before,
.omnibar-omnibar-socket *::after {
    box-sizing: border-box;
}

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

.omnibar-omnibar-socket p,
.omnibar-omnibar-socket h1,
.omnibar-omnibar-socket h2,
.omnibar-omnibar-socket h3,
.omnibar-omnibar-socket h4,
.omnibar-omnibar-socket h5,
.omnibar-omnibar-socket h6 {
    text-decoration: none;
}

.omnibar-omnibar-socket img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.omnibar-omnibar-socket {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.omnibar-omnibar-socket a.omnibar-glyph-trigger {
    --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;
}

.omnibar-omnibar-socket a.omnibar-glyph-trigger,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:hover,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:focus,
.omnibar-omnibar-socket a.omnibar-glyph-trigger:active,
.omnibar-omnibar-socket a.omnibar-glyph-trigger.active,
.omnibar-omnibar-socket a.omnibar-glyph-trigger[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);
}

.omnibar-omnibar-socket{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 13, 20, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 5vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.omnibar-omnibar-socket .omnibar-emblem-casing{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-emblem-casing img{
            height: 36px;
            width: auto;
            display: block;
        }

.omnibar-omnibar-socket .omnibar-prose-raster{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-glyph-trigger{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.35s ease;
            padding: 8px 16px;
            border-radius: 99px;
            min-width: 0;
        }

.omnibar-omnibar-socket .omnibar-glyph-trigger:hover, .omnibar-omnibar-socket .omnibar-glyph-trigger.active{
            color: #ffffff;
            background: rgba(227, 105, 64, 0.15);
            border: 1px solid rgba(227, 105, 64, 0.3);
        }

@media (max-width: 768px){.omnibar-omnibar-socket{
                padding: 12px 4vw;
            }

.omnibar-omnibar-socket .omnibar-prose-raster{
                gap: 8px;
            }

.omnibar-omnibar-socket .omnibar-glyph-trigger{
                padding: 6px 10px;
                font-size: 13px;
            }}

.omnibar-omnibar-socket {
    background: rgb(10, 13, 20);
    background-image: none;
}

.bedrock-bedrock-ledger {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text-main);
}
.bedrock-bedrock-ledger,
.bedrock-bedrock-ledger *,
.bedrock-bedrock-ledger *::before,
.bedrock-bedrock-ledger *::after {
    box-sizing: border-box;
}

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

.bedrock-bedrock-ledger p,
.bedrock-bedrock-ledger h1,
.bedrock-bedrock-ledger h2,
.bedrock-bedrock-ledger h3,
.bedrock-bedrock-ledger h4,
.bedrock-bedrock-ledger h5,
.bedrock-bedrock-ledger h6 {
    text-decoration: none;
}

.bedrock-bedrock-ledger img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-bedrock-ledger {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-bedrock-ledger a,
.bedrock-bedrock-ledger a:hover,
.bedrock-bedrock-ledger a:focus,
.bedrock-bedrock-ledger a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-bedrock-ledger{
            background: #06080d;
            border-top: 1px solid #263147;
            padding: 60px 5vw 30px 5vw;
            color: #94a3b8;
            font-size: 14px;
        }

.bedrock-bedrock-ledger .bedrock-crown-raster{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-info{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-brand{
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-links{
            flex: 2 1 500px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            min-width: 0;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-col{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-col h4{
            color: #ffffff;
            font-size: 15px;
            margin-bottom: 6px;
        }

.bedrock-bedrock-ledger .bedrock-anchor-glyph{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.bedrock-bedrock-ledger .bedrock-anchor-glyph:hover{
            color: #e36940;
        }

.bedrock-bedrock-ledger .bedrock-bedrock-copyright{
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #64748b;
        }