:root {
  --brand-primary: var(--wps-primary);
  --accent-gray: var(--wps-primary);
  --bg-white: var(--wps-bg);
  --primary-color: var(--wps-primary);
  --border-color: var(--wps-border);
  --brand-secondary: var(--wps-primary);
  --bg-color: var(--wps-bg);
  --text-main: var(--wps-text);
}

/* 基础重置与变量定义 */
:root {
  --wps-primary: hsl(20, 50%, 45%);      /* 强调色：深陶土红 */
  --wps-bg: hsl(20, 10%, 97%);           /* 背景色：极浅暖灰 */
  --wps-text: hsl(20, 15%, 15%);         /* 文字色：深灰黑 */
  --wps-border: hsl(20, 10%, 85%);       /* 边框色：低饱和度灰 */
  --wps-hover-bg: hsl(20, 10%, 92%);     /* 悬停背景 */
  --wps-nav-height: 64px;                /* 导航栏高度 */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  /* 布局规则：确保内容不被固定导航栏遮挡 */
  padding-top: var(--wps-nav-height);
  -webkit-font-smoothing: antialiased;
}
/* 导航栏容器 */
.catalyst {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wps-nav-height);
  background-color: var(--wps-bg);
  border-bottom: 1px solid var(--wps-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.ghostMode {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 品牌 Logo */
.neon_glow {
  font-size: 22px;
  font-weight: 700;
  color: var(--wps-text);
  text-decoration: none;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
/* 菜单导航部分 */
.nightWatch {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  margin-left: 48px;
}
.alpha_vibe {
  display: flex;
  list-style: none;
}
.obsidian {
  margin-right: 8px;
}
.quartz {
  display: block;
  padding: 8px 16px;
  color: var(--wps-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  /* 直角设计 */
  border-radius: 0;
}
.quartz:hover {
  background-color: var(--wps-hover-bg);
}
/* 按钮样式 */
.lightSpeed {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--wps-primary);
  color: #ffffff; /* 确保对比度符合 WCAG AA */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--wps-primary);
  transition: opacity 0.2s ease;
  /* 直角硬朗风格 */
  border-radius: 0;
}
.lightSpeed:hover {
  opacity: 0.9;
}
/* 移动端菜单开关 (默认隐藏) */
.zenith {
  display: none;
}
.area51 {
  display: none;
  cursor: pointer;
  padding: 10px;
}
.flarn,
.flarn::before,
.flarn::after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--wps-text);
  position: relative;
  transition: all 0.2s;
}
.flarn::before,
.flarn::after {
  content: "";
  position: absolute;
}
.flarn::before { top: -6px; }
.flarn::after { bottom: -6px; }
/* 响应式媒体查询 */
@media (max-width: 992px) {.nightWatch {
    position: absolute;
    top: var(--wps-nav-height);
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: var(--wps-bg);
    margin-left: 0;
    transition: height 0.3s ease;
    border-bottom: 0px solid var(--wps-border);
  }
.alpha_vibe {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
  }
.obsidian {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
.quartz {
    padding: 16px;
    font-size: 16px;
  }
.agent007 {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--wps-border);
  }
.lightSpeed {
    width: 80%;
  }
.area51 {
    display: block;
  }
.zenith:checked ~ .nightWatch {
    height: auto;
    border-bottom: 1px solid var(--wps-border);
  }
.zenith:checked + .area51 .flarn {
    background-color: transparent;
  }
.zenith:checked + .area51 .flarn::before {
    transform: rotate(45deg);
    top: 0;
  }
.zenith:checked + .area51 .flarn::after {
    transform: rotate(-45deg);
    bottom: 0;
  }}

:root {
    --wps-primary: hsl(20, 50%, 45%);      
    --wps-bg: hsl(20, 10%, 97%);           
    --wps-text: hsl(20, 15%, 15%);         
    --wps-border: hsl(20, 10%, 85%);       
    --wps-hover-bg: hsl(20, 10%, 92%);     
    --wps-nav-height: 64px;                
    }
@media (max-width: 992px) {
  .nightWatch {
    position: absolute;
    top: var(--wps-nav-height);
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: var(--wps-bg);
    margin-left: 0;
    transition: height 0.3s ease;
    border-bottom: 0px solid var(--wps-border);
    }
  
    .alpha_vibe {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    }
  
    .obsidian {
    margin-right: 0;
    width: 100%;
    text-align: center;
    }
  
    .quartz {
    padding: 16px;
    font-size: 16px;
    }
  
    .agent007 {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--wps-border);
    }
  
    .lightSpeed {
    width: 80%;
    }
  
    .area51 {
    display: block;
    }
  
    .zenith:checked ~ .nightWatch {
    height: auto;
    border-bottom: 1px solid var(--wps-border);
    }
  
    .zenith:checked + .area51 .flarn {
    background-color: transparent;
    }
  
    .zenith:checked + .area51 .flarn::before {
    transform: rotate(45deg);
    top: 0;
    }
  
    .zenith:checked + .area51 .flarn::after {
    transform: rotate(-45deg);
    bottom: 0;
    }
}
@media (max-width: 768px) {
  .v8_engine { grid-template-columns: 1fr; }
  
    h1 { font-size: 2.2rem; }
  
    .pixel_dust { flex-direction: column; gap: 40px; }
}

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

    body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    
    padding-top: var(--wps-nav-height);
    -webkit-font-smoothing: antialiased;
    }

    
    .catalyst {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--wps-nav-height);
    background-color: var(--wps-bg);
    border-bottom: 1px solid var(--wps-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    }

    .ghostMode {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    
    .neon_glow {
    font-size: 22px;
    font-weight: 700;
    color: var(--wps-text);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    }

    
    .nightWatch {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    margin-left: 48px;
    }

    .alpha_vibe {
    display: flex;
    list-style: none;
    }

    .obsidian {
    margin-right: 8px;
    }

    .quartz {
    display: block;
    padding: 8px 16px;
    color: var(--wps-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    
    border-radius: 0;
    }

    .quartz:hover {
    background-color: var(--wps-hover-bg);
    }

    
    .lightSpeed {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--wps-primary);
    color: #ffffff; 
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--wps-primary);
    transition: opacity 0.2s ease;
    
    border-radius: 0;
    }

    .lightSpeed:hover {
    opacity: 0.9;
    }

    
    .zenith {
    display: none;
    }

    .area51 {
    display: none;
    cursor: pointer;
    padding: 10px;
    }

    .flarn,
    .flarn::before,
    .flarn::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--wps-text);
    position: relative;
    transition: all 0.2s;
    }

    .flarn::before,
    .flarn::after {
    content: "";
    position: absolute;
    }

    .flarn::before { top: -6px; }

    .flarn::after { bottom: -6px; }

    main {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    }

    
    .kroon {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-color) 100%);
    }

    h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-color);
    }

    .turbo_boost {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    }

    .level9 {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.1);
    }

    .level9:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .silent_key {
    margin-top: 60px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    }

    .silent_key img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    
    .dataVault {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    }

    h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    }

    .v8_engine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    }

    .kinetic h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    }

    .vyte img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--gray-light);
    }

    
    .powerGrid3 {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 80px;
    }

    .shadow_fax h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    }

    .shadow_fax p {
    font-size: 0.9rem;
    color: #666;
    }

    
    .b3_wing {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    }

    .b3_wing:hover {
    background-color: var(--secondary-color);
    color: white;
    }

    
    footer {
    background-color: var(--white);
    padding: 60px 20px;
    border-top: 1px solid var(--gray-light);
    margin-top: 80px;
    }

    .pixel_dust {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    }

    .cloudSync h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    }

    .jixy {
    display: flex;
    gap: 40px;
    }

    .ethereal h5 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    }

    .ethereal a {
    display: block;
    text-decoration: none;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
    }

    .phantom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    }

@media (max-width: 768px) {
  
    .blick { flex-direction: column; gap: 30px; }
}

    
    title, meta, link { display: none; }

    
    .blindSpot {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    }

    .quickDraw {
    font-size: 1.25rem;
    color: hsl(119, 5%, 40%);
    max-width: 700px;
    margin: 0 auto 40px;
    }

    .coldSnap {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--text-color);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    }

    .coldSnap:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px var(--text-color);
    }

    .f1rst_try {
    font-size: 0.9rem;
    color: hsl(119, 5%, 50%);
    }

    .x2_zoom {
    margin-top: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 900px;
    }

    
    .frost_bite {
    padding: 80px 0;
    }

    .plink {
    font-size: 2rem;
    margin-bottom: 48px;
    text-align: center;
    }

    .plasma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    }

    .k9_unit {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    }

    .k9_unit h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    }

    .orbit {
    margin-top: auto;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
    }

    .orbit:hover {
    border-color: var(--secondary-color);
    }

    
    .wave_form {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    }

    .synapse {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    }

    .synapse th, .synapse td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    }

    .synapse th {
    font-weight: 700;
    color: hsl(119, 5%, 50%);
    width: 30%;
    }

    
    .vertex {
    padding: 80px 0;
    text-align: center;
    }

    .blick {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    }

    .thrum {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    }

    .logic_gate {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    
    .p0rtal {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    }

    .p0rtal a {
    color: var(--text-color);
    margin: 0 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
    }

    .smartFlow {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: block;
    }

    .splat {
    opacity: 0.6;
    font-size: 0.85rem;
    }

@media (max-width: 768px) {
  
    .v8_engine.m1nd_set {
    direction: ltr;
    }
  
    .rift {
    font-size: 1.6rem;
    }
}

    
    .rift {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 800;
    max-width: 900px;
    }

    .skiff {
    padding: 80px 5%;
    max-width: var(--max-width);
    margin: 0 auto;
    }

    .fireWall {
    background-color: var(--white);
    border-bottom: 1px solid var(--accent-gray);
    text-align: center;
    padding: 100px 5% 60px;
    }

    .g4_quad {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    }

    .v8_engine.m1nd_set {
    direction: rtl;
    }

    .v8_engine.m1nd_set .glomp {
    direction: ltr;
    }

    .pulsar {
    position: relative;
    background: var(--accent-gray);
    border: 1px solid var(--accent-gray);
    }

    .pulsar img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    }

    .glomp h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
    }

    .glomp h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    }

    .glomp p {
    font-size: 1.05rem;
    color: hsl(15, 10%, 30%);
    margin-bottom: 20px;
    }

    .sonic_flare {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    }

    .sonic_flare:hover {
    border-bottom-color: var(--primary-color);
    }

    .drift_zone {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    display: block;
    }

    .brainWave {
    background: var(--text-color);
    color: var(--white);
    padding: 60px;
    text-align: center;
    margin: 60px auto;
    }

    .brainWave h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    }

    .storm_cell {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
    }

    .storm_cell:hover {
    transform: translateY(-2px);
    }

    .jixy a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    }

@media (max-width: 768px) {
  
    .surge { grid-template-columns: 1fr; }
}

    h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--secondary-color);
    }

    .surge {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    }

    .k9_unit:hover {
    border-color: var(--primary-color);
    }

    .k9_unit ul {
    list-style: none;
    }

    .k9_unit ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    }

    .k9_unit ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    }

    table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    }

    table th, table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
    }

    table th {
    background-color: hsl(119, 20%, 90%);
    }

    .wisp {
    background: hsl(119, 30%, 92%);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    }

    .cyber_deck {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: var(--text-color);
    color: var(--white);
    }

    .darkMatter {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    transition: opacity 0.2s;
    }

    .darkMatter:hover {
    opacity: 0.9;
    }

    .r6_siege {
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    }

    .r6_siege a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-right: 20px;
    }

    .r6_siege a:hover {
    text-decoration: underline;
    }

    .cloudSync {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    display: block;
    }

@media (max-width: 768px) {
  .plink { font-size: 1.8rem; }
  
    .kroon h1 { font-size: 1.1rem; }
}

    .kroon h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
    letter-spacing: -0.01em;
    }

    .quantum_leap {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    }

    .quantum_leap img {
    width: 100%;
    display: block;
    filter: saturate(0.9);
    transition: transform 0.6s ease;
    }

    .quantum_leap:hover img {
    transform: scale(1.02);
    }

    
    .u2_sky {
    padding: 60px 0 100px;
    }

    .droll {
    position: relative;
    padding-left: 40px;
    margin-bottom: 80px;
    border-left: 2px solid var(--primary-color);
    }

    .droll::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid var(--bg-color);
    }

    .tremor {
    margin-bottom: 24px;
    }

    .silverLine {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    }

    .warp {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
    }

    .d4sh_board h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    }

    .d4sh_board h3::before {
    content: "→";
    margin-right: 10px;
    color: var(--secondary-color);
    }

    .d4sh_board ul {
    list-style: none;
    margin-bottom: 20px;
    }

    .d4sh_board li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: baseline;
    }

    .d4sh_board li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 12px;
    }

    .r6_siege p {
    margin-bottom: 15px;
    }

    .jixy a:hover {
    opacity: 1;
    color: var(--secondary-color);
    }

    .snark {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.875rem;
    opacity: 0.6;
    }

    .snark p {
    margin: 0;
    letter-spacing: 0.02em;
    }

@media (max-width: 768px) {
  .xenon, .xenon.m1nd_set {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
  
    .fireWall h1 {
    font-size: 1.75rem;
    }
}

    
    .seo-meta { display: none; }

    section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    }

    .fireWall h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    }

    .micro_chip {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    }

    
    .xenon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    }

    .xenon.m1nd_set {
    direction: rtl;
    }

    .xenon.m1nd_set .kludge {
    direction: ltr;
    }

    h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    }

    p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    }

    .s7_edge {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    }

    .s7_edge img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    }

    
    .wildCard {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    }

    .n0de_js {
    background: var(--bg-white);
    padding: 1rem;
    border-left: 3px solid var(--brand-secondary);
    font-size: 0.9rem;
    }

    .n0de_js b {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    }

    
    .goldRush {
    background: #fdf2f2;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #fee2e2;
    }

    .iron_clad {
    font-size: 0.875rem;
    color: var(--text-muted);
    }


.cc-sec-area.active,
.cc-sec-area.cc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}