:root {
  --spacing-md: 1rem;
  --bg-hover: var(--bg-color);
  --primary-brand: var(--primary-color);
  --spacing-lg: 2rem;
  --container-width: 1200px;
  --card-radius: var(--radius-sm);
  --bg-dark: var(--bg-color);
  --bg-card: var(--bg-color);
  --text-main: var(--text-color);
  --accent-gold: var(--primary-color);
  --card-bg: var(--bg-color);
  --transition-fast: var(--transition);
  --button-radius: var(--radius-sm);
  --accent-warm: var(--primary-color);
  --accent-color: var(--primary-color);
  --bg-light: var(--bg-color);
  --bg-deep: var(--bg-color);
  --border-radius-md: var(--radius-md);
  --primary-hover: var(--primary-color);
  --border-light: var(--border-color);
  --primary-soft: var(--primary-color);
  --border-radius-sm: var(--radius-sm);
  --bg-accent: var(--primary-color);
  --border-focus: var(--border-color);
  --primary-color: hsl(12, 95%, 58%);
  --secondary-color: hsl(38, 95%, 55%);
  --bg-color: hsl(234, 15%, 8%);
  --text-color: hsl(0, 0%, 98%);
  --text-muted: hsl(234, 10%, 70%);
  --border-color: rgba(255, 255, 255, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --nav-height: 64px;
  --max-width: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  margin: 0;
  padding-top: var(--nav-height); 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #1a1a1a; 
}

.turbo_77 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px); 
}
.camelCase {
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.snake_case {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.k_factor_4 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 900;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.5px;
}
.ghost_v2 {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.techjargon {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px; 
}
.pixelSync {
  display: flex;
  align-items: center;
}
.rift_peak {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.rift_peak:hover {
  color: var(--text-color);
  background-color: rgba(255, 255, 255, 0.05);
}
.rift_peak.alphaStream {
  color: var(--primary-color);
  font-weight: 600;
}

.abbreviations {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-lg); 
  transition: var(--transition);
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(245, 77, 40, 0.3);
}
.abbreviations:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 77, 40, 0.4);
}

.case {
  display: none;
}
.nebulaFlux {
  display: none;
  cursor: pointer;
  padding: 10px;
}
.compoundwords, .compoundwords::before, .compoundwords::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  position: relative;
  transition: var(--transition);
}
.compoundwords::before, .compoundwords::after {
  content: "";
  position: absolute;
}
.compoundwords::before { top: -8px; }
.compoundwords::after { bottom: -8px; }

@media (max-width: 992px) {.nebulaFlux {
    display: block;
  }
.techjargon {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    box-shadow: var(--shadow-lg);
  }
.pixelSync {
    width: 100%;
    justify-content: center;
  }
.rift_peak {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }
.abbreviations {
    margin: 10px 0;
    width: 80%;
    text-align: center;
  }
.case:checked ~ .techjargon {
    max-height: 500px;
    opacity: 1;
  }
.case:checked ~ .nebulaFlux .compoundwords {
    background-color: transparent;
  }
.case:checked ~ .nebulaFlux .compoundwords::before {
    transform: rotate(45deg);
    top: 0;
  }
.case:checked ~ .nebulaFlux .compoundwords::after {
    transform: rotate(-45deg);
    bottom: 0;
  }}

@media (max-width: 992px) {
  .nebulaFlux {
    display: block;
    }
  
    .techjargon {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    box-shadow: var(--shadow-lg);
    }
  
    .pixelSync {
    width: 100%;
    justify-content: center;
    }
  
    .rift_peak {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    }
  
    .abbreviations {
    margin: 10px 0;
    width: 80%;
    text-align: center;
    }
  
    .case:checked ~ .techjargon {
    max-height: 500px;
    opacity: 1;
    }
  
    .case:checked ~ .nebulaFlux .compoundwords {
    background-color: transparent;
    }
  
    .case:checked ~ .nebulaFlux .compoundwords::before {
    transform: rotate(45deg);
    top: 0;
    }
  
    .case:checked ~ .nebulaFlux .compoundwords::after {
    transform: rotate(-45deg);
    bottom: 0;
    }
}
@media (max-width: 768px) {
  .quartz_key {
    flex-direction: column !important;
    gap: 2rem;
    }
  
    .trace_vibe {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
}

    body {
    margin: 0;
    padding-top: var(--nav-height); 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #1a1a1a; 
    }

    .turbo_77 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px); 
    }

    .camelCase {
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .snake_case {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    }

    .k_factor_4 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 900;
    font-size: 18px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
    }

    .ghost_v2 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    }

    .techjargon {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 4px; 
    }

    .pixelSync {
    display: flex;
    align-items: center;
    }

    .rift_peak {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    }

    .rift_peak:hover {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.05);
    }

    .rift_peak.alphaStream {
    color: var(--primary-color);
    font-weight: 600;
    }

    .abbreviations {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-lg); 
    transition: var(--transition);
    margin-left: 12px;
    box-shadow: 0 4px 12px rgba(245, 77, 40, 0.3);
    }

    .abbreviations:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 77, 40, 0.4);
    }

    .case {
    display: none;
    }

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

    .compoundwords, .compoundwords::before, .compoundwords::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: var(--transition);
    }

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

    .compoundwords::before { top: -8px; }

    .compoundwords::after { bottom: -8px; }

    main {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    }

    .prism_mod8 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    }

    .blastCore {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top right, hsla(12, 90%, 55%, 0.15), transparent 40%),
    radial-gradient(circle at bottom left, hsla(234, 74%, 57%, 0.1), transparent 40%);
    }

    .blastCore h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .blastCore .vortex_zeta {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 500;
    }

    .node_entry {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    }

    .shadowBolt {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 0 20px hsla(12, 90%, 55%, 0.3);
    }

    .shadowBolt:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px hsla(12, 90%, 55%, 0.5);
    }

    .wave_point7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 60px 0;
    }

    .portal_v3 {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    }

    .portal_v3:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background-color: var(--bg-accent);
    }

    .portal_v3 h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    }

    .echo_wave {
    padding: 80px 0;
    }

    .quartz_key {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 60px;
    }

    .quartz_key:nth-child(even) {
    flex-direction: row-reverse;
    }

    .orbit_x {
    flex: 1;
    }

    .spark_9x {
    flex: 1.2;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    }

    .spark_9x img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    }

    .spark_9x:hover img {
    transform: scale(1.05);
    }

    .frame_sync {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: var(--transition);
    }

    .frame_sync:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    }

    footer {
    background-color: #000;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    }

    .trace_vibe {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 40px;
    }

    .blur_mode4 h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    }

    .logicFlow {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    }

@media (max-width: 768px) {
  .flux_emit {
    grid-template-columns: 1fr;
    }
  
    .blastCore {
    padding: 60px 20px;
    }
  
    .node_unit {
    margin-top: 20px;
    }
}

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

    .bolt_down { display: none; }

    .peak_glow {
    max-width: 1000px;
    margin: 0 auto;
    }

    h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    }

    .core_yield {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    }

    .wave_front {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 48px;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    border: none;
    cursor: pointer;
    }

    .wave_front:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.4);
    }

    .node_unit {
    max-width: 1100px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    }

    .node_unit img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    }

    .pixel_iso {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    }

    h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    }

    .spark_run {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    }

    .layer_zero {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .layer_zero:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    }

    .ghost_path {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    }

    .layer_zero h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    }

    .rift_high {
    font-size: 0.875rem;
    color: var(--text-muted);
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    }

    .shadow_alt {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    }

    .shadow_alt:hover {
    background: var(--primary-color);
    color: var(--white);
    }

    .flux_emit {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    }

    .vibe_quack {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    }

    .prism_kin {
    list-style: none;
    margin-top: 20px;
    }

    .prism_kin li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    }

    .prism_kin li span:first-child {
    font-weight: 600;
    color: var(--text-muted);
    }

    .blur_jump {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .blur_jump h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--white);
    }

    .trace_set {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #4CAF50;
    font-weight: bold;
    }

    .internal-nav {
    text-align: center;
    padding: 40px;
    background: var(--white);
    }

    .internal-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    }

    .internal-nav a:hover {
    border-bottom-color: var(--primary-color);
    }

    .fragment_w {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    }

    .blast_top {
    margin-bottom: 30px;
    }

    .blast_top a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    }

    .blast_top a:hover {
    color: var(--white);
    }

    .pulse_m {
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 20px;
    }

@media (max-width: 768px) {
  .blast_quick, .blast_quick:nth-child(even) {
    flex-direction: column;
    text-align: center;
    }
  
    .logic_xp {
    font-size: 1.8rem;
    }
}

    .logic_xp {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    }

    .spark_map {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, hsla(15, 95%, 55%, 0.15), transparent 70%);
    }

    .flux_net {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border-color);
    }

    .flux_net img {
    width: 100%;
    display: block;
    transition: transform var(--transition-fast);
    }

    .blast_quick {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-color);
    }

    .blast_quick:nth-child(even) {
    flex-direction: row-reverse;
    }

    .echo_zoom {
    flex: 1;
    }

    .zephyr_lite {
    flex: 1.2;
    }

    .zephyr_lite img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    }

    .fragment_bit {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-weight: bold;
    }

    .portal_view {
    background: linear-gradient(135deg, hsl(15, 80%, 15%), hsl(350, 70%, 10%));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    text-align: center;
    border: 1px solid hsla(15, 95%, 55%, 0.3);
    }

    .sync_cmd {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    }

    .sync_cmd:hover {
    border-bottom-color: var(--accent-color);
    }

    .blur_mode4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    }

    .core_web {
    color: var(--text-muted);
    font-size: 0.9rem;
    }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  
    .node_edge { padding-left: 50px; }
  
    .shadow_tab::before { left: 21px; }
  
    .trace_yaw { left: 10px; }
  
    .vortex_gen { flex-direction: column; gap: 4px; }
}

    .orbit_fix {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    }

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

    .ghost_ref {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: var(--border-light);
    display: block;
    }

    .shadow_tab {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
    position: relative;
    }

    .shadow_tab::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-brand), var(--bg-card));
    }

    .node_edge {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    }

    .trace_yaw {
    position: absolute;
    left: 20px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-deep);
    border: 4px solid var(--primary-brand);
    border-radius: 50%;
    z-index: 2;
    }

    .vortex_gen {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    }

    .nebula_hub {
    color: var(--primary-soft);
    font-weight: 600;
    font-size: 1rem;
    }

    .wave_pan {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    }

    .wave_pan:hover {
    transform: translateY(-5px);
    border-color: var(--border-focus);
    background: var(--bg-hover);
    }

    .quartz_jar {
    margin-bottom: 24px;
    }

    .quartz_jar:last-child {
    margin-bottom: 0;
    }

    h3 {
    font-size: 1.1rem;
    color: var(--primary-soft);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    h3::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-brand);
    border-radius: 50%;
    }

    .blur_add {
    list-style: none;
    }

    .blur_add li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    color: var(--text-standard);
    font-size: 0.95rem;
    }

    .blur_add li::after {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    }

    .peak_arc { background: var(--primary-brand); color: #fff; }

    .bolt_up { background: #34a853; color: #fff; }

    .frame_tag {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: hsla(15, 90%, 55%, 0.05);
    border-radius: var(--radius-md);
    }

    .frame_tag a {
    color: var(--primary-brand);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    }

    .frame_tag a:hover {
    border-bottom-color: var(--primary-brand);
    }

    .pixel_raw {
    color: var(--text-muted);
    font-size: 0.9rem;
    }

@media (max-width: 768px) {
  .blastCore h1 { font-size: 1.4rem; }
  
    .pulse_log { grid-template-columns: 1fr; }
}

    .seo-hidden {
    display: none;
    }

    .core_mid {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    }

    .logic_kit {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    }

    .logic_kit img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    }

    .pulse_log {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
    }

    .vibe_zip {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    }

    .vibe_zip:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    }

    .vibe_zip h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    }

    .blast_now {
    list-style: none;
    }

    .spark_bus {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    }

    .spark_bus:last-child {
    border-bottom: none;
    }

    .layer_xml {
    font-weight: 600;
    color: var(--text-muted);
    }

    .flux_val {
    text-align: right;
    font-weight: 500;
    }

    .fragment_css {
    text-align: center;
    padding: 60px 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin: 40px 0;
    }

    .fragment_css h3 {
    margin-bottom: 20px;
    }

    **CSS Class Definition Completion**
    Okay, here"s the deal. I"m a CSS expert, and I"ve got to complete these missing class definitions based on this context. The user has given me some existing CSS, including variables, a reset, and some sections like the \"Hero\" and \"Grid\" snippets. There"s a list of missing class names.. My task is to fill in the gaps..
    The main requirement is to only output missing CSS.. I need to infer styles based on these semantic names and make it match the existing design style.. Absolutely no markdown code blocks, and the format is specific..
    The prompt indicates a missing class: `footer-links`.. This usually signals a list of links in the footer, which means a flexbox layout is standard given the container width of 1100px.. I"[bad string]
    I see a cut-off CSS snippet for `.vibe_zip` which ends at `border: 1`.. It clearly needs completing.. Looking at common patterns in these landing pages, besides `footer-links`, I"[bad string]
    My first thought is, the user listed "footer-links" in the bullet point.. However, looking at the snippet, the prompt wants to finish `.vibe_zip` and give `footer-links`.. Wait, the prompt says "缺失的类名" which only lists `footer-links`.. Should I just provide `footer-links` and no more? It"[bad string]
    But, the user says "根据类名语义推断合适的样式".. This is telling me I should look for the standard components.. I"[bad string]
    The user says "只输出缺失类名的CSS定义".. Okay.. I will provide the completion for `.vibe_zip` and then add `footer-links`.. I"ll also add `.btn-primary`, as that"s hinted in the instructions..
    Wait, the instructions say "只输出缺失类名的CSS定义".. `.vibe_zip` is partially there, but broken.. I"ll provide the continuation of the broken part, with `footer-links`. I"ll also add a few standard components like `.shadowBolt`.. The prompt"[bad string]
    I"[bad string]
    The variables, like `--primary-color` and `--text-muted`, the spacing like `20px`, and the transitions will be important to keep the style consistent..
    So, here"s my plan: `.req-card`"s broken block, finish it.. Then, I"[bad string]
    Now, let"s make sure I"ve got all the requirements, and no unnecessary CSS is being outputted.. The user lists `footer-links` as the only one under "缺失的类名".. But, `.vibe_zip` is there and broken.. The user wants me to complete that, and also give `footer-links`.. Then, include `.shadowBolt` based on the example given in the prompt, or just follow the "missing" section and the incomplete CSS code..
    Okay, checking variables again.. The existing code uses `--primary-color`..
    I"[bad string]
    I"[bad string]
    One last check, I"m going to provide `.req-card`, `.btn-primary` and `.footer-links`. I"m confident in following the instructions..
    .vibe_zip {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    }

    .vibe_zip h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--text-main);
    }

    .vibe_zip p {
    color: var(--text-muted);
    font-size: 0.95rem;
    }

@media (max-width: 768px) {
  .peak_off, .peak_off:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    }
}

    .pixel_web {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 40px;
    }

    .ghost_run {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -50px;
    padding-bottom: var(--section-padding);
    }

    .trace_yep {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: var(--border-light);
    }

    .trace_yep:hover {
    transform: translateY(-10px);
    }

    .trace_yep img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    }

    .bolt_use {
    padding: 24px;
    }

    .frame_ext {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    }

    .bolt_use h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    }

    .bolt_use p {
    color: var(--text-muted);
    font-size: 0.95rem;
    }

    .shadow_tip {
    padding: var(--section-padding);
    background: var(--white);
    }

    .peak_off {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    }

    .peak_off:nth-child(even) {
    flex-direction: row-reverse;
    }

    .wave_inc {
    flex: 1;
    }

    .rift_pos {
    flex: 1;
    }

    .rift_pos img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    }

    .shadow_tip h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    }

    .node_query {
    list-style: none;
    margin: 20px 0;
    }

    .node_query li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    }

    .node_query li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    }

    .blur_all {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px;
    border-radius: var(--card-radius);
    text-align: center;
    margin: 40px 0;
    }

    .blur_all a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-warm);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--button-radius);
    font-weight: bold;
    margin-top: 24px;
    transition: opacity 0.3s;
    }

    .blur_all a:hover {
    opacity: 0.9;
    }

    .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    }

@media (max-width: 768px) {
  .zephyr_dot {
    grid-template-columns: 1fr;
    gap: 40px;
    }
  
    .prod_mod {
    font-size: 2rem;
    }
}

    h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    }

    .prod_mod {
    font-size: 2.8rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .uuid_hex {
    display: flex;
    gap: 16px;
    justify-content: center;
    }

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

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

    .zephyr_dot.ver_patch {
    direction: rtl;
    }

    .zephyr_dot.ver_patch .kpi_data {
    direction: ltr;
    }

    .beta_env {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .beta_env img {
    width: 100%;
    display: block;
    transition: var(--transition);
    }

    .beta_env:hover img {
    transform: scale(1.03);
    }

    .api_mod {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    }

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

    .db_sync {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
    }

    .sdk_tool {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    }

    .hash_sum {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    }

    .echo_fax h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
    }

    .blast_top h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    }

    .sync_get {
    color: var(--accent-warm);
    text-decoration: underline;
    text-underline-offset: 4px;
    }

    .portal_hit {
    color: var(--text-muted);
    }

    .hover {
    outline: 2px solid var(--accent-warm) !important;
    outline-offset: 3px;
    transition: var(--transition);
    }

    .card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    }

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

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