:root {
  --theme-primary: #e36583;
  --theme-accent: #f28da3;
  --theme-surface: #1a2035;
  --theme-bg: #121624;
  --theme-text: #f0f4f8;
  --theme-subtext: #9aa8c3;
  --theme-border: rgba(227, 101, 131, 0.25);
  --radius-main: 16px;
  --radius-inner: 12px;
}

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

body {
  background-color: var(--theme-bg);
  color: var(--theme-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 导航栏样式复用 */
.beacon-sheath {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background-color: rgba(18, 22, 36, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--theme-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.beacon-crest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}

.beacon-crest img {
  height: 38px;
  width: auto;
  display: block;
}

.nexus-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
}

.latch-strand {
  color: var(--theme-subtext);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.25s ease, background-color 0.25s ease;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-inner);
}

.latch-strand:hover,
.latch-strand.active {
  color: #ffffff;
  background-color: rgba(227, 101, 131, 0.15);
}

/* 页面主框架与版心 */
main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem 1.5rem;
}

/* 模块 0: 首屏 Hero 展示区 (canopy) */
.canopy-vanguard {
  background: linear-gradient(135deg, rgba(26, 32, 53, 0.9) 0%, rgba(18, 22, 36, 0.95) 100%);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-main);
  padding: 3.5rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.canopy-cohort {
  flex: 1 1 500px;
  min-width: 0;
}

.canopy-crest-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(227, 101, 131, 0.15);
  border: 1px solid rgba(227, 101, 131, 0.4);
  color: var(--theme-accent);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.canopy-edict {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.canopy-script {
  font-size: 1.08rem;
  color: var(--theme-subtext);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.canopy-pivot-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pulse-clinch {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--theme-primary) 0%, #d84b6c 100%);
  color: #ffffff;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-inner);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(227, 101, 131, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pulse-clinch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(227, 101, 131, 0.5);
}

.pulse-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--theme-border);
  box-shadow: none;
}

.pulse-secondary:hover {
  background: rgba(227, 101, 131, 0.1);
  border-color: var(--theme-primary);
}

.canopy-visor-stage {
  flex: 1 1 380px;
  min-width: 0;
  background: var(--theme-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-inner);
  padding: 1.8rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.canopy-visor-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.canopy-visor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff5f56;
}

.canopy-visor-dot:nth-child(2) { background-color: #ffbd2e; }
.canopy-visor-dot:nth-child(3) { background-color: #27c93f; }

.canopy-visor-code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  color: #a6accd;
  line-height: 1.8;
}

.canopy-visor-code span.highlight {
  color: var(--theme-accent);
  font-weight: 600;
}

/* 顶层通用标题与段落 */
.vault-edict {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.vault-subscript {
  color: var(--theme-subtext);
  font-size: 1rem;
  margin-bottom: 2.2rem;
}

/* 模块 1: 三步初始化部署 (quick_start_flow) - <section> */
.vault-domain {
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.step-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.step-nook {
  flex: 1 1 300px;
  min-width: 0;
  background: rgba(18, 22, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-inner);
  padding: 2rem 1.6rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-nook:hover {
  transform: translateY(-4px);
  border-color: var(--theme-primary);
}

.step-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--theme-primary) 0%, #d84b6c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(227, 101, 131, 0.3);
}

.step-edict {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.step-script {
  font-size: 0.95rem;
  color: var(--theme-subtext);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.step-tag-node {
  background: rgba(227, 101, 131, 0.1);
  color: var(--theme-accent);
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(227, 101, 131, 0.2);
}

/* 模块 2: 防护规则自定义与参数调优 (configuration_tuning) - <article> */
.domain-fortress {
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tune-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.tune-nook {
  flex: 1 1 360px;
  min-width: 0;
  background: rgba(18, 22, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-inner);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tune-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tune-rune {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(227, 101, 131, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  flex-shrink: 0;
}

.tune-rune svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tune-edict {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.tune-script {
  font-size: 0.95rem;
  color: var(--theme-subtext);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.tune-spec {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tune-spec-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.tune-spec-line:last-child {
  border-bottom: none;
}

.tune-spec-key {
  color: var(--theme-subtext);
}

.tune-spec-val {
  color: var(--theme-accent);
  font-family: monospace;
  font-weight: 600;
}

/* 模块 3: 常见网络异常与排查指南 (troubleshooting_matrix) - <div> */
.haven-capsule {
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.trouble-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trouble-nook {
  flex: 1 1 350px;
  min-width: 0;
  background: rgba(18, 22, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-inner);
  padding: 1.8rem;
  transition: border-color 0.25s ease;
}

.trouble-nook:hover {
  border-color: rgba(227, 101, 131, 0.4);
}

.trouble-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trouble-seal {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.trouble-edict {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.trouble-script {
  font-size: 0.92rem;
  color: var(--theme-subtext);
  margin-bottom: 1.25rem;
}

.trouble-solution {
  background: rgba(39, 201, 63, 0.08);
  border-left: 3px solid #27c93f;
  padding: 0.8rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.trouble-solution strong {
  color: #4ade80;
  display: block;
  margin-bottom: 0.2rem;
}

/* 模块 4: 文档支持与技术帮助通道 (community_support) - <aside> */
.bedrock-anchor {
  background: linear-gradient(135deg, rgba(227, 101, 131, 0.12) 0%, rgba(26, 32, 53, 0.8) 100%);
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-main);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.support-cohort {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.support-nook {
  flex: 1 1 320px;
  min-width: 0;
  background: rgba(18, 22, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-inner);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease;
}

.support-nook:hover {
  transform: translateY(-3px);
}

.support-rune {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--theme-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.support-rune svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.support-edict {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.support-script {
  font-size: 0.93rem;
  color: var(--theme-subtext);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.support-strand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--theme-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.support-strand:hover {
  color: #ffffff;
}

/* 页脚样式 (bedrock) */
.bedrock-stratum {
  background-color: rgba(18, 22, 36, 0.98);
  border-top: 1px solid var(--theme-border);
  padding: 3rem 2.5rem;
  margin-top: 4rem;
}

.bedrock-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.bedrock-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.bedrock-subtext {
  color: var(--theme-subtext);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.bedrock-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bedrock-strand {
  color: var(--theme-subtext);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.bedrock-strand:hover {
  color: var(--theme-accent);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .beacon-sheath {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .nexus-cluster {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .latch-strand {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }

  main {
    padding: 1.5rem 1rem 3rem 1rem;
  }

  .canopy-vanguard,
  .vault-domain,
  .domain-fortress,
  .haven-capsule,
  .bedrock-anchor {
    padding: 1.8rem 1.25rem;
  }

  .step-nook,
  .tune-nook,
  .trouble-nook,
  .support-nook {
    flex: 1 1 100%;
  }

  .bedrock-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.beacon-beacon-sheath {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text);
}
.beacon-beacon-sheath,
.beacon-beacon-sheath *,
.beacon-beacon-sheath *::before,
.beacon-beacon-sheath *::after {
    box-sizing: border-box;
}

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

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

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

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

.beacon-beacon-sheath a.beacon-latch-strand {
    --aisite-shell-nav-padding: 0.5rem 1.1rem;
    --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;
}

.beacon-beacon-sheath a.beacon-latch-strand,
.beacon-beacon-sheath a.beacon-latch-strand:hover,
.beacon-beacon-sheath a.beacon-latch-strand:focus,
.beacon-beacon-sheath a.beacon-latch-strand:active,
.beacon-beacon-sheath a.beacon-latch-strand.active,
.beacon-beacon-sheath a.beacon-latch-strand[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);
}

.beacon-beacon-sheath{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(18, 22, 36, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(227, 101, 131, 0.25);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.beacon-beacon-sheath .beacon-beacon-crest{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.beacon-beacon-sheath .beacon-beacon-crest img{
            height: 38px;
            width: auto;
            display: block;
        }

.beacon-beacon-sheath .beacon-nexus-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            min-width: 0;
        }

.beacon-beacon-sheath .beacon-latch-strand{
            color: #9aa8c3;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 99px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: normal;
        }

.beacon-beacon-sheath .beacon-latch-strand:hover, .beacon-beacon-sheath .beacon-latch-strand.active{
            color: #ffffff;
            background: rgba(227, 101, 131, 0.18);
            box-shadow: 0 0 12px rgba(227, 101, 131, 0.35);
            border: 1px solid #e36583;
        }

@media (max-width: 768px){.beacon-beacon-sheath{
                padding: 0.8rem 1rem;
                flex-direction: column;
                align-items: stretch;
                gap: 0.8rem;
            }

.beacon-beacon-sheath .beacon-nexus-cluster{
                justify-content: center;
            }

.beacon-beacon-sheath .beacon-latch-strand{
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }}

.beacon-beacon-sheath {
    background: rgb(18, 22, 36);
    background-image: none;
}

.bedrock-bedrock-stratum {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text);
}
.bedrock-bedrock-stratum,
.bedrock-bedrock-stratum *,
.bedrock-bedrock-stratum *::before,
.bedrock-bedrock-stratum *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

.bedrock-bedrock-stratum{
            background: #0b0e17;
            border-top: 1px solid rgba(227, 101, 131, 0.25);
            padding: 3rem 2rem 2rem;
            color: #9aa8c3;
            font-size: 0.9rem;
        }

.bedrock-bedrock-stratum .bedrock-bedrock-sheath{
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

.bedrock-bedrock-stratum .bedrock-anchor-base{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock-stratum .bedrock-anchor-edict{
            font-size: 1.4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

.bedrock-bedrock-stratum .bedrock-anchor-script{
            line-height: 1.6;
            margin-bottom: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-cluster{
            flex: 1 1 180px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand{
            color: #9aa8c3;
            text-decoration: none;
            transition: color 0.2s ease;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand:hover{
            color: #f28da3;
        }

.bedrock-bedrock-stratum .bedrock-base-copyright{
            max-width: 1360px;
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.85rem;
        }