/* Restore Chirpy's default palette while keeping Neutriverse custom modules. */

#mode-toggle {
  order: -2;
}

#sidebar .sidebar-bottom .icon-border {
  order: -1;
}

#sidebar .site-subtitle,
#sidebar .site-subtitle *,
#sidebar .site-subtitle.fst-italic {
  font-style: normal !important;
}

#sidebar .nav-item:has(.nav-link[href$="/categories/"]),
#sidebar .nav-item:has(.nav-link[href$="/tags/"]),
#sidebar .nav-item:has(.nav-link[href$="/thoughts/"]),
#sidebar .nav-item:has(.nav-link[href$="/archives/"]) {
  display: none;
}

#sidebar #avatar {
  cursor: pointer;
}

#sidebar #avatar.site-logo-spinning img,
.site-sidebar-recall.is-spinning img {
  animation: neutriverse-logo-spin 720ms cubic-bezier(0.24, 0.84, 0.34, 1) both;
}

.site-sidebar-recall {
  position: fixed;
  top: 1rem;
  left: 0.75rem;
  z-index: 1050;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(120, 130, 145, 0.34);
  border-radius: 50%;
  background: color-mix(in srgb, var(--sidebar-bg) 86%, transparent);
  box-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-0.55rem) scale(0.86);
  transition:
    opacity 220ms ease,
    transform 260ms ease,
    border-color 220ms ease;
}

.site-sidebar-recall img {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
}

.site-sidebar-recall:hover,
.site-sidebar-recall:focus-visible {
  border-color: rgba(138, 180, 248, 0.72);
  transform: translateX(0) scale(1);
}

@media all and (min-width: 850px) {
  #sidebar,
  #main-wrapper,
  #topbar-wrapper {
    transition:
      transform 420ms cubic-bezier(0.22, 0.72, 0.28, 1),
      margin-left 420ms cubic-bezier(0.22, 0.72, 0.28, 1),
      padding-left 420ms cubic-bezier(0.22, 0.72, 0.28, 1);
  }

  body.site-sidebar-collapsed #sidebar {
    transform: translateX(-100%);
  }

  body.site-sidebar-collapsed #main-wrapper,
  body.site-sidebar-collapsed #topbar-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  body.site-sidebar-collapsed .site-sidebar-recall {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }
}

@media all and (max-width: calc(850px - 1px)) {
  .site-sidebar-recall {
    display: none;
  }
}

@keyframes neutriverse-logo-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  70% {
    transform: rotate(900deg) scale(1.08);
  }

  100% {
    transform: rotate(1080deg) scale(1);
  }
}

.post-preview.has-preview-image {
  min-height: 12.2rem;
}

.post-preview-image {
  position: relative;
  padding: 0.9rem 0.9rem 0.9rem 0;
  overflow: hidden;
}

.post-preview-image::before,
.post-preview-image::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.post-preview-image::before {
  inset: 0.9rem 0.9rem 0.9rem 0;
  z-index: 1;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.46);
}

.post-preview-image::after {
  inset: 0.9rem 0.9rem 0.9rem 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 1.5rem rgba(0, 0, 0, 0.28);
}

.post-preview-image-frame {
  height: 100%;
  min-height: 10.4rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--main-bg);
}

.post-preview-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.post-preview:hover .post-preview-image-frame img {
  filter: saturate(1.08) brightness(1.03);
  transform: scale(1.12);
}

.post-preview.has-preview-image .card-text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
}

.post-preview.has-preview-image .card-text p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-dispatch {
  margin: 0.15rem 0 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--main-border-color);
}

.home-dispatch-heading,
.home-feed-control-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.72rem;
}

.home-dispatch-heading p,
.home-feed-control-heading p {
  margin: 0;
  color: var(--text-muted-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-dispatch-heading h1,
.home-feed-control-heading h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 700;
}

.home-dispatch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(15rem, 0.78fr);
  gap: 0.85rem;
}

.home-dispatch-main,
.home-dispatch-sub {
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--main-bg) 94%, #08101d);
  color: var(--text-color);
  text-decoration: none;
}

.home-dispatch-main {
  position: relative;
  min-height: 19.5rem;
  display: grid;
  overflow: hidden;
}

.home-dispatch-main:hover,
.home-dispatch-main:focus-visible,
.home-dispatch-sub:hover,
.home-dispatch-sub:focus-visible {
  border-color: rgba(78, 126, 255, 0.45);
  color: var(--heading-color);
  text-decoration: none;
}

.home-dispatch-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #05070d;
}

.home-dispatch-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.66)),
    rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.home-dispatch-track {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.32, 0, 0.2, 1);
  transition-duration: 450ms;
}

.home-dispatch-media.has-carousel .home-dispatch-track {
  transform: translateX(0);
}

.home-dispatch-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.home-dispatch-slide .preview-img {
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.home-dispatch-slide img,
.home-dispatch-slide .preview-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.96);
}

.home-dispatch-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(78, 126, 255, 0.08), transparent 52%),
    color-mix(in srgb, var(--main-bg) 88%, #05070d);
}

.home-dispatch-placeholder span {
  width: min(9rem, 36vw);
  aspect-ratio: 1;
  border: 1px solid rgba(78, 126, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(78, 126, 255, 0.1);
}

.home-dispatch-main-meta {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 1.1rem;
}

.home-dispatch-kicker,
.home-dispatch-index {
  color: #8fb7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-dispatch-main-meta h2 {
  max-width: 34rem;
  margin: 0.38rem 0 0.45rem;
  color: #f2f5ff;
  font-size: clamp(1.38rem, 2.4vw, 2.05rem);
  line-height: 1.16;
}

.home-dispatch-main-meta p {
  margin: 0;
  color: rgba(242, 245, 255, 0.74);
  font-size: 0.84rem;
}

.home-dispatch-main-meta p span {
  margin: 0 0.3rem;
  color: rgba(242, 245, 255, 0.42);
}

.home-dispatch-sublist {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-dispatch-sub {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.22rem 0.62rem;
  min-height: 4.25rem;
  padding: 0.72rem 0.78rem;
}

.home-dispatch-index {
  grid-row: 1 / span 2;
  align-self: start;
  color: var(--text-muted-color);
}

.home-dispatch-sub-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--heading-color);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.28;
}

.home-dispatch-sub-meta {
  overflow: hidden;
  color: var(--text-muted-color);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-feed-control {
  margin: 0 0 1rem;
}

.home-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
}

.home-category-filter button {
  min-height: 2rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--main-bg) 94%, #0a1018);
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.home-category-filter button:hover,
.home-category-filter button:focus-visible,
.home-category-filter button.is-active {
  border-color: rgba(78, 126, 255, 0.52);
  color: var(--heading-color);
}

.home-category-group {
  position: relative;
}

.home-category-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 20;
  min-width: 10rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--main-bg) 96%, #05070d);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(-0.25rem);
  visibility: hidden;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease,
    visibility 0.14s ease;
}

.home-category-group:hover .home-category-submenu,
.home-category-group:focus-within .home-category-submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.home-category-submenu button {
  width: 100%;
  text-align: left;
}

.home-feed-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.home-feed-pager[hidden] {
  display: none;
}

.home-feed-pager-bottom {
  margin: 1rem 0 2rem;
}

.home-feed-pager button {
  min-height: 2rem;
  padding: 0 0.72rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--main-bg) 94%, #0a1018);
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.home-feed-pager button:hover,
.home-feed-pager button:focus-visible {
  border-color: rgba(226, 207, 91, 0.46);
  color: var(--heading-color);
}

.home-feed-pager button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.home-feed-pager span {
  min-width: 4.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}

.home-feed-item[hidden] {
  display: none;
}

.content .nv-red {
  color: #ff7d7d;
}

.content .nv-orange {
  color: #ffad66;
}

.content .nv-gold {
  color: #d8b76a;
}

.content .nv-green {
  color: #82d982;
}

.content .nv-cyan {
  color: #74d6d6;
}

.content .nv-blue {
  color: #8fb7ff;
}

.content .nv-purple {
  color: #c4a6ff;
}

.content .nv-pink {
  color: #ff9bc6;
}

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

.content .nv-underline {
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.content .nv-wavy {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.content .nv-dotted {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}

.content .nv-mark,
.content .nv-mark-gold {
  padding: 0.05em 0.22em;
  border-radius: 0.18em;
  background: rgba(216, 183, 106, 0.2);
  color: var(--heading-color);
}

.content .nv-mark-red {
  padding: 0.05em 0.22em;
  border-radius: 0.18em;
  background: rgba(255, 125, 125, 0.18);
  color: var(--heading-color);
}

.content .nv-mark-blue {
  padding: 0.05em 0.22em;
  border-radius: 0.18em;
  background: rgba(143, 183, 255, 0.18);
  color: var(--heading-color);
}

.content .nv-mark-green {
  padding: 0.05em 0.22em;
  border-radius: 0.18em;
  background: rgba(130, 217, 130, 0.16);
  color: var(--heading-color);
}

.content .nv-key {
  padding: 0.02em 0.18em;
  border-bottom: 2px solid currentColor;
  color: #d8b76a;
  font-weight: 600;
}

.content .nv-spoiler {
  border-radius: 0.18em;
  background: currentColor;
  color: var(--text-color);
  transition:
    background 0.16s ease,
    color 0.16s ease;
}

.content .nv-spoiler:hover,
.content .nv-spoiler:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-color);
}

.about-profile {
  max-width: 55rem;
  margin-top: 0.15rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--main-border-color);
}

.about-info {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--main-border-color);
}

.about-section-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text-muted-color);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-info-text {
  max-width: 30rem;
  margin: 0;
  color: var(--text-muted-color);
  font-size: 1.2rem;
  line-height: 1.42;
}

.about-now {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.18fr);
  gap: 0.8rem 1.65rem;
  margin-top: 1.05rem;
}

.about-now-main {
  grid-row: 1 / span 2;
  min-width: 0;
}

.about-now h2 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
  font-size: clamp(1.32rem, 2vw, 1.52rem);
  font-weight: 400;
  line-height: 1.16;
}

.about-now-summary {
  margin: 0;
  color: var(--text-muted-color);
  font-size: 1.16rem;
  line-height: 1.42;
}

.about-instruments {
  display: grid;
  grid-template-columns: 4.95rem minmax(10rem, 1fr);
  gap: 0 0.82rem;
  align-items: center;
  justify-self: end;
  width: min(100%, 17.6rem);
}

.about-gauge-row {
  display: grid;
  grid-template-areas:
    'bars monitor'
    'scan scan';
  grid-template-columns: 1.7rem 2.8rem;
  grid-template-rows: 2.8rem 1.7rem;
  gap: 0.45rem;
  width: 4.95rem;
  height: 4.95rem;
}

.about-monitor {
  grid-area: monitor;
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--main-border-color);
  border-radius: 50%;
  opacity: 0.72;
}

.about-scan {
  grid-area: scan;
  position: relative;
  width: 4.95rem;
  height: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--main-border-color);
  border-radius: 0.22rem;
  opacity: 0.64;
}

.about-bars {
  grid-area: bars;
  display: grid;
  grid-template-columns: repeat(3, 0.24rem);
  align-items: end;
  justify-content: center;
  gap: 0.18rem;
  width: 1.7rem;
  height: 1.7rem;
  align-self: center;
  border: 1px solid var(--main-border-color);
  border-radius: 0.22rem;
  opacity: 0.58;
}

.about-bars span {
  display: block;
  width: 100%;
  min-height: 0.28rem;
  margin-bottom: 0.26rem;
  background: var(--text-muted-color);
  opacity: 0.45;
  animation: about-bars-level 2.4s ease-in-out infinite;
}

.about-bars span:nth-child(1) {
  height: 0.48rem;
}

.about-bars span:nth-child(2) {
  height: 0.86rem;
  animation-delay: 0.22s;
}

.about-bars span:nth-child(3) {
  height: 0.62rem;
  animation-delay: 0.44s;
}

.about-scan::before,
.about-scan::after,
.about-scan span {
  content: '';
  position: absolute;
  display: block;
  pointer-events: none;
}

.about-scan::before {
  inset: 0.28rem 0.36rem;
  background:
    linear-gradient(var(--main-border-color), var(--main-border-color)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--main-border-color), var(--main-border-color)) 0 50% / 100% 1px no-repeat,
    linear-gradient(var(--main-border-color), var(--main-border-color)) 0 100% / 100% 1px no-repeat;
  opacity: 0.85;
}

.about-scan::after {
  top: 0.35rem;
  right: 0.42rem;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: var(--text-muted-color);
  opacity: 0.46;
}

.about-scan span {
  top: 0.22rem;
  bottom: 0.22rem;
  left: 0.38rem;
  width: 1px;
  background: var(--text-muted-color);
  box-shadow: 0 0 0.55rem rgba(255, 255, 255, 0.18);
  animation: about-scan-line 2.8s ease-in-out infinite alternate;
}

.about-monitor::before,
.about-monitor::after,
.about-monitor span,
.about-monitor i,
.about-monitor b {
  content: '';
  position: absolute;
  display: block;
  pointer-events: none;
}

.about-monitor::before {
  inset: 0.45rem;
  border: 1px solid var(--main-border-color);
  border-radius: 50%;
}

.about-monitor::after {
  top: 50%;
  left: 50%;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--text-muted-color);
  transform: translate(-50%, -50%);
}

.about-monitor span {
  top: 50%;
  left: 50%;
  width: 1.12rem;
  height: 1px;
  background: var(--text-muted-color);
  transform-origin: left center;
  animation: about-monitor-sweep 3.8s linear infinite;
}

.about-monitor i {
  inset: 0.72rem;
  border-top: 1px solid var(--main-border-color);
  border-bottom: 1px solid var(--main-border-color);
  opacity: 0.75;
}

.about-monitor b {
  top: 0.78rem;
  right: 0.72rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--link-color);
  opacity: 0.65;
  animation: about-monitor-pulse 1.8s ease-in-out infinite;
}

.about-now-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(11.5rem, 1fr));
  gap: 0.48rem 1.15rem;
  grid-column: 2;
}

.about-now-item {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.42rem;
  min-width: 0;
}

.about-now-item span,
.about-now-step span,
.about-now-updated {
  color: var(--text-muted-color);
  font-size: 0.76rem;
}

.about-now-item strong {
  color: var(--heading-color);
  font-size: 0.92rem;
  line-height: 1.38;
  min-width: 10em;
  overflow-wrap: anywhere;
}

.about-now-updated {
  position: absolute;
  right: 0;
  bottom: -1.9rem;
}

.about-signal {
  min-width: 0;
}

.about-signal-title {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-muted-color);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-signal-row {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 0.45rem;
  min-width: 0;
  color: var(--text-muted-color);
  font-size: 0.75rem;
  line-height: 1.45;
}

.about-signal-row strong {
  color: var(--heading-color);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.about-now-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.35rem;
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--main-border-color);
}

.about-now-step {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
  padding-left: 0.72rem;
}

.about-now-step::before {
  content: '';
  position: absolute;
  top: 0.63rem;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border: 1px solid var(--text-muted-color);
  border-radius: 50%;
  background: transparent;
}

.about-now-step.is-active::before {
  border-color: var(--link-color);
  background: var(--link-color);
}

.about-now-step strong {
  color: var(--heading-color);
  font-size: 0.88rem;
  line-height: 1.35;
}

.about-stacks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.about-stack-panel {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.014);
}

.about-stack-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--main-border-color);
}

.about-stack-kicker {
  color: var(--text-muted-color);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-stack-header h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 700;
}

.about-stack-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-stack-item {
  position: relative;
  min-height: 3.35rem;
  padding: 0.5rem 0.65rem 0.9rem 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.35rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)),
    var(--card-bg);
}

.about-stack-index {
  position: absolute;
  top: 0.55rem;
  left: 0.62rem;
  color: var(--text-muted-color);
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.72;
}

.about-stack-item strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--heading-color);
  font-size: 0.9rem;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-stack-item time {
  position: absolute;
  right: 0.62rem;
  bottom: 0.34rem;
  color: var(--text-muted-color);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.about-friends {
  margin-top: 0.95rem;
  padding: 0.85rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.014);
}

.about-friend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.about-friend-node {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.58rem;
  min-width: 0;
  min-height: 4.25rem;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.38rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)),
    var(--card-bg);
  color: var(--text-color);
  text-decoration: none;
}

.about-friend-node:hover,
.about-friend-node:focus-visible {
  border-color: rgba(226, 207, 91, 0.36);
  color: var(--text-color);
  text-decoration: none;
}

.about-friend-avatar {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--main-border-color) 74%, #e2cf5b);
  border-radius: 0.34rem;
  background: color-mix(in srgb, var(--main-bg) 88%, #080808);
  background-position: center;
  background-size: cover;
  color: color-mix(in srgb, var(--heading-color) 86%, #e2cf5b);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-friend-avatar.is-loaded {
  color: transparent;
}

.about-friend-avatar.is-fallback {
  background:
    linear-gradient(135deg, rgba(226, 207, 91, 0.14), rgba(255, 255, 255, 0.018)),
    var(--card-bg);
}

.about-friend-body {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-width: 0;
}

.about-friend-topline,
.about-friend-meta {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  min-width: 0;
}

.about-friend-topline strong {
  min-width: 0;
  overflow: hidden;
  color: var(--heading-color);
  font-size: 0.92rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-friend-topline em {
  margin-left: auto;
  color: color-mix(in srgb, var(--text-muted-color) 80%, #e2cf5b);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-friend-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-muted-color);
  font-size: 0.78rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.about-friend-meta {
  color: var(--text-muted-color);
  font-size: 0.68rem;
  line-height: 1.25;
  opacity: 0.76;
}

.about-friend-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-friend-meta span + span {
  margin-left: auto;
  text-align: right;
}

.private-navi {
  margin-top: 1.1rem;
  padding: 1rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0)),
    var(--card-bg);
}

.private-navi-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.private-navi-header p,
.private-navi-group-header span {
  margin: 0;
  color: var(--text-muted-color);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-navi-header h2,
.private-navi-group-header h3 {
  margin: 0;
  color: var(--heading-color);
  line-height: 1.18;
}

.private-navi-header h2 {
  font-size: 1.05rem;
}

.private-navi-groups {
  display: grid;
  gap: 0.95rem;
}

.private-navi-group {
  min-width: 0;
}

.private-navi-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.private-navi-group-header h3 {
  font-size: 0.9rem;
}

.private-navi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.private-navi-node {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.58rem;
  min-width: 0;
  min-height: 4.25rem;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.38rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)),
    color-mix(in srgb, var(--card-bg) 94%, var(--main-bg));
  color: var(--text-color);
  text-decoration: none;
}

.private-navi-node:hover,
.private-navi-node:focus-visible {
  border-color: color-mix(in srgb, var(--main-border-color) 58%, #68d2ff);
  color: var(--text-color);
  text-decoration: none;
}

.private-navi-avatar {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--main-border-color) 72%, #68d2ff);
  border-radius: 0.34rem;
  background: color-mix(in srgb, var(--main-bg) 88%, #080808);
  background-position: center;
  background-size: cover;
  color: color-mix(in srgb, var(--heading-color) 86%, #68d2ff);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.private-navi-avatar.is-loaded {
  color: transparent;
}

.private-navi-avatar.is-fallback {
  background:
    linear-gradient(135deg, rgba(104, 210, 255, 0.12), rgba(255, 255, 255, 0.018)),
    var(--card-bg);
}

.private-navi-body {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-width: 0;
}

.private-navi-topline,
.private-navi-meta {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  min-width: 0;
}

.private-navi-topline strong {
  min-width: 0;
  overflow: hidden;
  color: var(--heading-color);
  font-size: 0.92rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.private-navi-topline em {
  margin-left: auto;
  color: color-mix(in srgb, var(--text-muted-color) 78%, #68d2ff);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-navi-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-muted-color);
  font-size: 0.78rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.private-navi-meta,
.private-navi-empty {
  color: var(--text-muted-color);
  font-size: 0.68rem;
  line-height: 1.25;
  opacity: 0.76;
}

.private-navi-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.private-navi-meta span + span {
  margin-left: auto;
  text-align: right;
}

.about-countdown {
  margin: 2.15rem 0 0;
  color: var(--text-muted-color);
  font-size: 0.84rem;
}

@keyframes about-monitor-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes about-monitor-pulse {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes about-scan-line {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(4.05rem);
  }
}

@keyframes about-bars-level {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 0.7;
    transform: scaleY(1);
  }
}

.neutriverse-status {
  margin-bottom: 2.2rem;
  padding: 1rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.65rem;
  background: var(--card-bg);
}

.status-kicker {
  display: block;
  color: var(--text-muted-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-heading h2 {
  margin: 0.15rem 0 0.85rem;
  color: var(--heading-color);
  font-size: 1rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.status-item {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.018);
}

.status-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text-muted-color);
  font-size: 0.72rem;
}

.status-item strong {
  display: block;
  color: var(--heading-color);
  font-size: 0.94rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.middle-memory-panel .panel-heading {
  margin-bottom: 0.75rem;
}

#post-panel-stack {
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  transition: top 0.2s ease-in-out;
}

#post-panel-stack::-webkit-scrollbar {
  display: none;
}

#post-panel-stack #toc-wrapper {
  position: static !important;
  max-height: none;
  overflow: visible;
}

#post-panel-stack #toc-wrapper::after {
  display: none;
}

#post-series {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.65rem;
  background: var(--card-bg);
}

.post-series-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.post-series-header .panel-heading {
  margin: 0;
}

.post-series-count,
.post-series-root,
.post-series-size,
.post-series-date {
  color: var(--text-muted-color);
  font-size: 0.78rem;
}

.post-series-root {
  margin-bottom: 0.8rem;
}

.post-series-tree {
  max-height: 28rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.post-series-group {
  margin-top: 0.3rem;
}

.post-series-group summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2rem;
  cursor: pointer;
  list-style: none;
  color: var(--heading-color);
  font-weight: 700;
}

.post-series-group summary::-webkit-details-marker {
  display: none;
}

.post-series-category {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-series-size {
  margin-left: auto;
}

.post-series-group summary::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--text-muted-color);
  border-bottom: 2px solid var(--text-muted-color);
  color: var(--text-muted-color);
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}

.post-series-group[open] > summary::after {
  transform: rotate(45deg);
}

.post-series-list {
  display: grid;
  gap: 0.15rem;
  margin: 0.25rem 0 0.45rem;
  padding: 0;
  list-style: none;
}

.post-series-item a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.15rem;
  padding: 0.2rem 0.35rem;
  border-left: 2px solid transparent;
  border-radius: 0.35rem;
  color: var(--text-color);
  text-decoration: none;
}

.post-series-item a:hover,
.post-series-item.is-current a {
  border-left-color: var(--link-color);
  background: var(--main-bg);
  color: var(--link-color);
}

.post-series-order {
  color: var(--text-muted-color);
  font-variant-numeric: tabular-nums;
}

.post-series-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.middle-memory-entry {
  max-height: min(24rem, calc(100vh - 13rem));
  overflow-y: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.middle-memory-text,
.middle-memory-translation {
  margin: 0;
  max-width: 100%;
  hyphens: auto;
  line-break: loose;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.middle-memory-text {
  line-height: 1.75;
}

.middle-memory-translation {
  margin-top: 0.62rem;
  padding-left: 0.72rem;
  border-left: 1px solid rgba(10, 72, 255, 0.34);
  color: color-mix(in srgb, var(--text-muted-color) 88%, #d8d8d8);
  font-size: 0.82rem;
  line-height: 1.62;
  opacity: 0.84;
}

.middle-memory-translation[hidden] {
  display: none;
}

.post-actions {
  gap: 0.9rem;
}

.post-tail-bottom {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-like {
  gap: 0.25rem;
  white-space: nowrap;
}

.post-like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  color: var(--text-muted-color);
  background: transparent;
}

.post-like-button i {
  font-size: 1.1rem;
}

.post-like-button:hover,
.post-like-button.is-liked {
  color: var(--link-color);
}

.post-like-count {
  min-width: 1ch;
  color: var(--text-muted-color);
  font-size: 0.95rem;
}

.twikoo-comments {
  position: relative;
  margin: 2.2rem 0 2.6rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.55rem;
  background: color-mix(in srgb, var(--main-bg) 97%, #000);
  max-width: 100%;
  overflow-x: hidden;
}

.twikoo-comments::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 210, 210, 0.22), transparent);
  opacity: 0.62;
}

.twikoo-comments-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.twikoo-comments-header p {
  margin: 0;
  color: var(--text-muted-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.twikoo-comments-header h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.twikoo-comments .tk-content,
.twikoo-comments .tk-nick,
.twikoo-comments .tk-meta,
.twikoo-comments .tk-time {
  color: var(--text-color);
}

.twikoo-comments .tk-meta,
.twikoo-comments .tk-time,
.twikoo-comments .tk-action-link {
  color: var(--text-muted-color);
}

.twikoo-comments .tk-submit {
  position: relative;
  display: block !important;
  padding: 0.95rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--card-bg) 86%, #000);
}

.twikoo-comments .tk-submit .tk-avatar,
.twikoo-comments .tk-avatar {
  display: none !important;
}

.twikoo-comments .tk-avatar img,
.twikoo-comments .tk-avatar .tk-avatar-img {
  border: 1px solid color-mix(in srgb, var(--main-border-color) 82%, #ddd);
  background: color-mix(in srgb, var(--main-bg) 88%, #111);
}

.twikoo-comments .tk-submit-content {
  display: block !important;
  width: 100%;
  min-width: 0;
}

.twikoo-comments .el-input__inner,
.twikoo-comments .el-textarea__inner {
  border-color: var(--main-border-color);
  background: color-mix(in srgb, var(--main-bg) 92%, #000);
  color: var(--text-color);
  box-shadow: none;
}

.twikoo-comments .el-input__inner {
  height: 2.15rem;
}

.twikoo-comments .el-textarea__inner {
  width: 100% !important;
  min-height: 7.2rem !important;
  line-height: 1.55;
  resize: vertical;
}

.twikoo-comments textarea {
  width: 100% !important;
}

.twikoo-comments #tcomment,
.twikoo-comments .tk-submit,
.twikoo-comments .tk-submit-content,
.twikoo-comments .tk-comments-container,
.twikoo-comments .tk-meta-input,
.twikoo-comments .el-input,
.twikoo-comments .el-input-group,
.twikoo-comments .el-textarea {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
}

.twikoo-comments .tk-input {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
}

.twikoo-comments .tk-meta-input {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.twikoo-comments .tk-meta-input .el-input,
.twikoo-comments .tk-meta-input .el-input-group {
  width: 100% !important;
}

.twikoo-comments .tk-submit-content > .el-textarea,
.twikoo-comments .tk-submit .el-textarea,
.twikoo-comments .tk-row,
.twikoo-comments .tk-submit-action {
  display: block;
  width: 100%;
}

.twikoo-comments .tk-submit .el-textarea {
  clear: both;
}

.twikoo-comments .el-input-group__prepend {
  width: 4.15rem;
  padding: 0 0.75rem;
  border-color: var(--main-border-color);
  background: color-mix(in srgb, var(--main-bg) 88%, #111);
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.twikoo-comments .tk-row,
.twikoo-comments .tk-submit-action,
.twikoo-comments .tk-preview-container {
  max-width: 100%;
}

.twikoo-comments .tk-row.actions,
.twikoo-comments .tk-submit-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-left: 0 !important;
}

.twikoo-comments .tk-submit-action-icon {
  color: var(--text-muted-color);
}

.twikoo-comments .el-button {
  border-color: var(--main-border-color);
  background: color-mix(in srgb, var(--main-bg) 90%, #111);
  color: var(--text-color);
  border-radius: 0.35rem;
}

.twikoo-comments .el-input__inner:focus,
.twikoo-comments .el-textarea__inner:focus {
  border-color: rgba(226, 207, 91, 0.58);
  box-shadow: 0 0 0 2px rgba(226, 207, 91, 0.08);
}

.twikoo-comments .el-button--primary {
  border-color: rgba(226, 207, 91, 0.62) !important;
  background: rgba(226, 207, 91, 0.16) !important;
  color: #eadb74 !important;
}

.twikoo-comments .el-button--primary:hover,
.twikoo-comments .el-button--primary:focus {
  border-color: rgba(226, 207, 91, 0.78) !important;
  background: rgba(226, 207, 91, 0.24) !important;
  color: #fff0a0 !important;
}

.twikoo-comments .tk-comments-container {
  margin-top: 1rem;
}

.twikoo-comments .tk-comments-container > .tk-comment,
.twikoo-comments .tk-comments-container .tk-replies .tk-comment {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  width: 100%;
}

.twikoo-comments .tk-comments-container .tk-comment > .tk-main {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0 !important;
}

.twikoo-comments .tk-comments-container .tk-comment > .tk-avatar {
  display: block !important;
  flex: 0 0 2.08rem;
  width: 2.08rem;
  height: 2.08rem;
  margin: 0.16rem 0 0 !important;
}

.twikoo-comments .tk-comments-container .tk-avatar .tk-avatar-img,
.twikoo-comments .tk-comments-container .tk-avatar img,
.twikoo-comments .tk-comments-container .tk-avatar svg {
  display: block;
  width: 2.08rem !important;
  height: 2.08rem !important;
  border: 1px solid color-mix(in srgb, var(--main-border-color) 74%, #e2cf5b);
  border-radius: 0.34rem !important;
  background: color-mix(in srgb, var(--main-bg) 88%, #080808);
  object-fit: cover;
  overflow: hidden;
}

.twikoo-comments .tk-comments-container .tk-avatar svg {
  padding: 0.32rem;
  fill: color-mix(in srgb, var(--text-muted-color) 82%, #d8d8d8);
}

.twikoo-comments .tk-comments-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.05rem;
}

.twikoo-comments .tk-comments-count {
  color: var(--heading-color);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.2;
}

.twikoo-comments .tk-comments-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted-color);
  font-size: 0.8rem;
}

.twikoo-comments .tk-comments-container .tk-comment > .tk-main > .tk-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-meta {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-nick {
  color: color-mix(in srgb, var(--heading-color) 88%, #d8d8d8);
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-time {
  margin-left: 0.28rem;
  color: var(--text-muted-color);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.72;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-action {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.24rem;
  width: auto !important;
  min-width: max-content;
  margin-left: auto;
  color: var(--text-muted-color);
  text-align: right;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.5rem;
  padding: 0 0.1rem;
  color: var(--text-muted-color) !important;
  opacity: 0.84;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-action-link:hover,
.twikoo-comments .tk-comments-container .tk-comment .tk-action-link:focus-visible {
  color: #eadb74 !important;
  opacity: 1;
}

.twikoo-comments .tk-comments-container .tk-comment .tk-action-icon {
  width: 0.92rem;
  height: 0.92rem;
}

.twikoo-comments .tk-comments-container .tk-content {
  color: color-mix(in srgb, var(--text-color) 92%, #fff);
  font-size: 0.98rem;
  line-height: 1.72;
}

.twikoo-comments .tk-comments-container .tk-content,
.twikoo-comments .tk-comments-container .tk-extras {
  margin-top: 0.45rem;
}

.twikoo-comments .tk-comments-container .tk-content p {
  margin: 0.15rem 0 0;
}

.twikoo-comments .tk-comments-container .tk-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem 0.68rem;
  color: var(--text-muted-color);
  font-size: 0.74rem;
  line-height: 1.35;
  opacity: 0.56;
}

.twikoo-comments .tk-comments-container .tk-extra {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.twikoo-comments .tk-comments-container .tk-icon {
  width: 0.72rem;
  height: 0.72rem;
  opacity: 0.72;
}

.twikoo-comments .tk-comments-container .tk-replies {
  position: relative;
  width: auto !important;
  margin: 0.8rem 0 0;
  padding: 0.42rem 0 0.1rem;
  border-left: 0;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-comment {
  gap: 0.38rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-comment > .tk-avatar {
  flex-basis: 1.48rem;
  width: 1.48rem;
  height: 1.48rem;
  margin-top: 0.16rem !important;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-avatar .tk-avatar-img,
.twikoo-comments .tk-comments-container .tk-replies .tk-avatar img,
.twikoo-comments .tk-comments-container .tk-replies .tk-avatar svg {
  width: 1.48rem !important;
  height: 1.48rem !important;
  border-radius: 0.28rem !important;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-avatar svg {
  padding: 0.24rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-comment {
  color: var(--text-muted-color);
  font-size: 0.9rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-comment > .tk-main > .tk-row {
  gap: 0.55rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-nick {
  color: color-mix(in srgb, var(--heading-color) 76%, var(--text-muted-color));
  font-size: 0.86rem;
  font-weight: 800;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-time {
  font-size: 0.72rem;
  opacity: 0.62;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-content {
  color: color-mix(in srgb, var(--text-color) 86%, var(--text-muted-color));
  font-size: 0.9rem;
  line-height: 1.62;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-content > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 0.15rem;
  color: transparent;
  font-size: 0;
  line-height: 1.2;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-content > span:first-child::before {
  content: 'reply';
  color: color-mix(in srgb, var(--text-muted-color) 78%, #e2cf5b);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-ruser {
  color: color-mix(in srgb, var(--link-color) 72%, #e2cf5b) !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-content > span:last-child p {
  margin-top: 0.1rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-extras {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  opacity: 0.46;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-action {
  gap: 0.15rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-action-link {
  min-width: 1.08rem;
  height: 1.25rem;
}

.twikoo-comments .tk-comments-container .tk-replies .tk-action-icon {
  width: 0.78rem;
  height: 0.78rem;
}

.twikoo-comments .tk-comments-container .tk-expand-wrap {
  position: relative;
  z-index: 2;
  height: 4.3rem;
  margin-top: -2.65rem;
  pointer-events: none;
}

.twikoo-comments .tk-comments-container .tk-expand-wrap::before {
  content: '';
  position: absolute;
  inset: 0 0 2.05rem;
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0) 0%,
    rgba(25, 25, 25, 0.5) 58%,
    rgba(25, 25, 25, 0.86) 100%
  );
}

.twikoo-comments .tk-comments-container .tk-expand {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  min-height: 2rem;
  padding-top: 0.35rem;
  background: transparent !important;
  color: color-mix(in srgb, var(--text-muted-color) 86%, #fff);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
}

.twikoo-comments .tk-comments-container .tk-expand:hover,
.twikoo-comments .tk-comments-container .tk-expand:focus-visible {
  color: #eadb74;
}

.twikoo-comments .tk-nodata {
  margin: 1.6rem 0 0.6rem;
  color: var(--text-muted-color);
  font-size: 0.94rem;
}

.twikoo-comments .tk-footer {
  margin-top: 1rem;
  color: var(--text-muted-color);
  font-size: 0.78rem;
  opacity: 0.72;
}

.thought-fragments {
  display: grid;
  gap: 0.85rem;
}

.thought-fragment-card {
  padding: 0.9rem 1rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.5rem;
  background: var(--card-bg);
}

.thought-fragment-text {
  margin-bottom: 0.65rem;
  color: var(--text-color);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.thought-fragment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  color: var(--text-muted-color);
  font-size: 0.9rem;
}

.thought-fragment-tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.thought-fragment-tag {
  line-height: 1.4;
}

.thought-fragment-date {
  white-space: nowrap;
}

.footer-line,
.site-icp,
.site-powered {
  letter-spacing: 0;
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  text-align: center;
}

.footer-line p {
  margin-bottom: 0.35rem;
}

.site-powered {
  text-align: center;
}

@media (min-width: 992px) {
  .footer-line {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: clamp(0.75rem, 3vw, 2.25rem);
    text-align: initial;
  }

  .footer-line p {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .footer-credit {
    justify-self: start;
    text-align: left;
  }

  .site-powered {
    justify-self: center;
  }

  .site-icp {
    justify-self: end;
    text-align: right;
  }
}

.tag-galaxy {
  position: relative;
  min-height: 24rem;
  margin: 0.5rem 0 2rem;
  border: 1px solid var(--main-border-color);
  border-radius: 0.65rem;
  background: var(--card-bg);
}

.tag-galaxy::before {
  content: '';
  position: absolute;
  inset: 2rem;
  border: 1px solid var(--main-border-color);
  border-radius: 50%;
  opacity: 0.55;
}

.tag-galaxy::after {
  content: '';
  position: absolute;
  inset: 5.2rem 7.2rem;
  border: 1px solid var(--main-border-color);
  border-radius: 50%;
  opacity: 0.32;
}

.galaxy-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--main-border-color);
  border-radius: 50%;
  background: var(--main-bg);
  color: var(--heading-color);
  text-align: center;
}

.galaxy-core span {
  font-weight: 700;
}

.galaxy-core small {
  color: var(--text-muted-color);
}

.tag-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 11rem;
  padding: 0.38rem 0.58rem;
  border: 1px solid var(--main-border-color);
  border-radius: 999px;
  background: var(--main-bg);
  color: var(--text-color);
  text-decoration: none;
}

.tag-node:hover {
  border-color: var(--text-muted-color);
  color: var(--heading-color);
  text-decoration: none;
}

.tag-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-count {
  min-width: 1.35rem;
  color: var(--text-muted-color);
  font-size: 0.78rem;
  text-align: center;
}

.node-0 { top: 13%; left: 45%; }
.node-1 { top: 28%; left: 68%; }
.node-2 { top: 61%; left: 63%; }
.node-3 { top: 73%; left: 38%; }
.node-4 { top: 56%; left: 16%; }
.node-5 { top: 24%; left: 20%; }
.node-6 { top: 38%; left: 50%; }
.node-7 { top: 48%; left: 74%; }
.node-8 { top: 68%; left: 20%; }
.node-9 { top: 18%; left: 62%; }
.node-10 { top: 36%; left: 12%; }
.node-11 { top: 76%; left: 52%; }

.tag-index-list {
  margin-top: 1.5rem;
}

.probe-module {
  --probe-accent: #0a48ff;
  --probe-accent-rgb: 10, 72, 255;
  --probe-bg-tint: #050915;
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 14, 18, 0.58);
  backdrop-filter: blur(0.35rem);
  opacity: 0;
  transition:
    opacity 160ms ease,
    backdrop-filter 180ms ease;
}

.probe-module::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 20%, rgba(var(--probe-accent-rgb), 0.18), transparent 26rem);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.probe-module[hidden] {
  display: none;
}

.probe-module.is-visible {
  opacity: 1;
}

.probe-module.is-calibrated::before {
  opacity: 1;
}

.probe-module-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: min(58rem, 100%);
  max-height: min(38rem, calc(100vh - 2rem));
}

.probe-module-shell::before {
  content: '';
  position: absolute;
  top: -0.16rem;
  left: 1rem;
  z-index: 4;
  width: 4.2rem;
  height: 0.08rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(var(--probe-accent-rgb), 0.78) 18%, rgba(var(--probe-accent-rgb), 0.42) 68%, transparent);
  box-shadow:
    0 0 0.42rem rgba(var(--probe-accent-rgb), 0.24),
    0 0.18rem 0.62rem rgba(var(--probe-accent-rgb), 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.15rem) scaleX(0.72);
  transition:
    opacity 180ms ease 120ms,
    transform 220ms ease 120ms;
}

.probe-module-shell::after {
  content: '';
  position: absolute;
  top: -0.14rem;
  right: 1rem;
  z-index: 4;
  width: 2.1rem;
  height: 0.07rem;
  border-radius: 999px;
  background: rgba(var(--probe-accent-rgb), 0.42);
  box-shadow: 0 0 0.38rem rgba(var(--probe-accent-rgb), 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.12rem) scaleX(0.68);
  transition:
    opacity 180ms ease 160ms,
    transform 220ms ease 160ms;
}

.probe-module.is-calibrated .probe-module-shell::before {
  opacity: 0.86;
  transform: translateY(0) scaleX(1);
}

.probe-module.is-calibrated .probe-module-shell::after {
  opacity: 0.64;
  transform: translateY(0) scaleX(1);
}

.probe-module-window {
  position: relative;
  isolation: isolate;
  z-index: 2;
  width: min(38rem, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.24);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--main-bg) 92%, var(--probe-bg-tint));
  box-shadow:
    0 1.2rem 3rem rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(2.2rem) scale(0.992);
  transition:
    opacity 150ms ease,
    transform 170ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
  will-change: opacity, transform;
}

.probe-module.is-visible .probe-module-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: probe-module-fly-in 280ms cubic-bezier(0.18, 0.88, 0.22, 1) both;
}

.probe-module.is-calibrated .probe-module-window {
  border-color: rgba(var(--probe-accent-rgb), 0.42);
  box-shadow:
    0 1.2rem 3rem rgba(0, 0, 0, 0.36),
    0 0 1.1rem rgba(var(--probe-accent-rgb), 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.probe-module-sidecar {
  position: relative;
  z-index: 1;
  width: min(17rem, 28vw);
  min-width: 15.2rem;
  margin-left: 0.55rem;
  opacity: 0;
  transform: translateY(2.2rem) translateX(-0.45rem) scale(0.988);
  transition:
    opacity 170ms ease 70ms,
    transform 190ms ease 70ms;
  will-change: opacity, transform;
}

.probe-module.is-visible .probe-module-sidecar {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.probe-module-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(var(--probe-accent-rgb), 0.24);
}

.probe-module-kicker {
  margin: 0 0 0.2rem;
  color: var(--probe-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.probe-module h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.2rem;
  line-height: 1.25;
}

.probe-module-close {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted-color);
  font-size: 1.25rem;
  line-height: 1;
}

.probe-module-close:hover,
.probe-module-close:focus-visible {
  color: var(--heading-color);
  border-color: rgba(var(--probe-accent-rgb), 0.7);
}

.probe-module-gates {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 0;
}

.probe-module-gates a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 4rem;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.24);
  border-radius: 0.45rem;
  padding: 0.62rem 0.7rem;
  background:
    linear-gradient(135deg, rgba(var(--probe-accent-rgb), 0.1), transparent 54%),
    color-mix(in srgb, var(--main-bg) 82%, var(--probe-bg-tint));
  color: var(--text-color);
  text-decoration: none;
}

.probe-module-gates a::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(var(--probe-accent-rgb), 0.34), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 160ms ease, transform 180ms ease;
}

.probe-module-gates a::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  bottom: 0.46rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1px solid rgba(var(--probe-accent-rgb), 0.68);
  border-bottom: 1px solid rgba(var(--probe-accent-rgb), 0.68);
  opacity: 0.72;
}

.probe-module-gates a:hover,
.probe-module-gates a:focus-visible {
  color: var(--heading-color);
  border-color: rgba(var(--probe-accent-rgb), 0.68);
  box-shadow: 0 0 1rem rgba(var(--probe-accent-rgb), 0.16);
}

.probe-module-gates a:hover::before,
.probe-module-gates a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.probe-module-gates span,
.probe-module-gates strong {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.probe-module-gates span {
  margin-bottom: 0.22rem;
  color: var(--probe-accent);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.probe-module-gates strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.probe-module-search {
  position: relative;
  z-index: 1;
  padding: 1rem 1.15rem 0.65rem;
}

.probe-module-search input {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.38);
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--main-bg) 78%, var(--probe-bg-tint));
  color: var(--text-color);
  outline: none;
}

.probe-module-search input:focus {
  border-color: rgba(var(--probe-accent-rgb), 0.82);
  box-shadow: 0 0 0 0.18rem rgba(var(--probe-accent-rgb), 0.16);
}

.probe-module-status {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.15rem 0.75rem;
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.probe-module-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  overflow: auto;
  padding: 0 1.15rem 1.15rem;
}

.probe-module-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.2);
  border-radius: 0.4rem;
  background: rgba(var(--probe-accent-rgb), 0.07);
  color: var(--text-color);
  text-decoration: none;
}

.probe-module-item:hover,
.probe-module-item:focus-visible {
  border-color: rgba(var(--probe-accent-rgb), 0.62);
  background: rgba(var(--probe-accent-rgb), 0.12);
  color: var(--heading-color);
  text-decoration: none;
}

.probe-module-item-title {
  font-weight: 700;
}

.probe-module-item-meta,
.probe-module-empty {
  color: var(--text-muted-color);
  font-size: 0.82rem;
}

.probe-module-empty {
  margin: 0;
  padding: 0.8rem 0.85rem;
  border: 1px dashed rgba(var(--probe-accent-rgb), 0.34);
  border-radius: 0.4rem;
}

.probe-module-eye-signal .probe-module-window {
  border-color: rgba(var(--probe-accent-rgb), 0.86);
  box-shadow:
    0 1.2rem 3rem rgba(0, 0, 0, 0.36),
    0 0 1.8rem rgba(var(--probe-accent-rgb), 0.26);
  animation: probe-module-eye-lock 520ms ease-out both;
}

.probe-module-eye-result {
  overflow: hidden;
  border: 1px solid rgba(var(--probe-accent-rgb), 0.28);
  border-radius: 0.4rem;
  background: #000;
}

.probe-module-eye-result img {
  display: block;
  width: 100%;
  max-height: min(24rem, 58vh);
  object-fit: contain;
}

.neutriverse-status.probe-status-panel {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-color: rgba(var(--probe-accent-rgb), 0.3);
  border-radius: 0.5rem;
  padding: 1.15rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(var(--probe-accent-rgb), 0.09), transparent 34%),
    color-mix(in srgb, var(--main-bg) 88%, var(--probe-bg-tint));
  box-shadow:
    0 1rem 2.4rem rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.probe-status-panel::before {
  content: none;
}

.probe-status-panel .status-heading {
  margin-bottom: 1rem;
}

.probe-status-panel .status-kicker {
  color: var(--probe-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.probe-status-panel .status-heading h2 {
  margin: 0.26rem 0 0;
  color: var(--heading-color);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.28;
}

.probe-status-panel .status-grid {
  gap: 0.5rem;
}

.probe-status-panel .status-item {
  min-height: 4.65rem;
  padding: 0.76rem 0.72rem;
  border-color: rgba(var(--probe-accent-rgb), 0.18);
  background:
    linear-gradient(135deg, rgba(var(--probe-accent-rgb), 0.08), transparent 62%),
    rgba(255, 255, 255, 0.012);
}

.probe-status-panel .status-label {
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  line-height: 1.25;
}

.probe-status-panel .status-item strong {
  color: var(--heading-color);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.16;
}

@keyframes probe-module-fly-in {
  0% {
    opacity: 0;
    transform: translateY(2.6rem) scale(0.99);
  }
  76% {
    opacity: 1;
    transform: translateY(-0.08rem) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes probe-module-eye-lock {
  0% {
    box-shadow:
      0 1.2rem 3rem rgba(0, 0, 0, 0.36),
      0 0 0 rgba(var(--probe-accent-rgb), 0);
  }
  45% {
    box-shadow:
      0 1.2rem 3rem rgba(0, 0, 0, 0.36),
      0 0 2.4rem rgba(var(--probe-accent-rgb), 0.38);
  }
  100% {
    box-shadow:
      0 1.2rem 3rem rgba(0, 0, 0, 0.36),
      0 0 1.8rem rgba(var(--probe-accent-rgb), 0.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  .probe-module,
  .probe-module::before,
  .probe-module-shell::before,
  .probe-module-shell::after,
  .probe-module-window,
  .probe-module-sidecar {
    transition: none;
  }

  .probe-module.is-visible .probe-module-window,
  .probe-module-eye-signal .probe-module-window {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .home-dispatch-grid {
    grid-template-columns: 1fr;
  }

  .home-dispatch-main {
    min-height: 16.8rem;
  }

  .home-dispatch-sublist {
    grid-template-rows: none;
    gap: 0.5rem;
  }

  .home-dispatch-sub {
    min-height: 3.9rem;
  }

  .home-dispatch-heading,
  .home-feed-control-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 0.18rem;
  }

  .home-category-filter {
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.38rem;
    margin-right: -0.75rem;
    padding: 0 0.75rem 0.25rem 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-category-filter::-webkit-scrollbar {
    display: none;
  }

  .home-category-filter > button,
  .home-category-group {
    flex: 0 0 auto;
  }

  .home-category-filter button {
    white-space: nowrap;
  }

  .home-category-group {
    position: relative;
  }

  .home-category-submenu {
    right: 0;
    left: auto;
    min-width: max-content;
    max-width: calc(100vw - 2rem);
  }

  .home-feed-pager {
    justify-content: space-between;
    gap: 0.35rem;
  }

  .home-feed-pager button {
    flex: 1 1 0;
    padding: 0 0.45rem;
    white-space: nowrap;
  }

  .twikoo-comments {
    margin-top: 1.8rem;
    padding: 0.9rem;
  }

  .twikoo-comments-header {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 0.18rem;
  }

  .twikoo-comments .tk-meta-input {
    grid-template-columns: 1fr;
  }

  .twikoo-comments .tk-submit {
    padding: 0.78rem;
  }

  .twikoo-comments .tk-submit .tk-avatar,
  .twikoo-comments .tk-avatar {
    display: none;
  }

  .twikoo-comments .el-input-group__prepend {
    width: 4rem;
  }

  .post-preview.has-preview-image {
    min-height: 0;
  }

  .post-preview-image {
    padding: 0.85rem 0.85rem 0;
  }

  .post-preview-image::before,
  .post-preview-image::after {
    inset: 0.85rem 0.85rem 0;
  }

  .post-preview-image::before {
    background: rgba(0, 0, 0, 0.46);
  }

  .post-preview-image-frame {
    aspect-ratio: 16 / 7;
    max-height: 13rem;
    min-height: 0;
  }

  .post-preview-image-frame img {
    height: 100%;
    max-height: none;
  }

  .about-profile {
    max-width: none;
  }

  .about-info-text,
  .about-now-summary {
    font-size: 1.05rem;
  }

  .about-now {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-now-main,
  .about-instruments,
  .about-now-grid {
    grid-column: 1;
  }

  .about-now-main {
    grid-row: auto;
  }

  .about-instruments {
    justify-self: stretch;
    width: 100%;
  }

  .about-monitor {
    width: 2.35rem;
    height: 2.35rem;
  }

  .about-scan,
  .about-bars {
    display: none;
  }

  .about-now-grid {
    grid-template-columns: 1fr;
  }

  .about-stacks {
    grid-template-columns: 1fr;
  }

  .about-friend-grid {
    grid-template-columns: 1fr;
  }

  .private-navi-header,
  .private-navi-group-header {
    display: grid;
    gap: 0.25rem;
  }

  .private-navi-grid {
    grid-template-columns: 1fr;
  }

  .about-now-updated {
    position: static;
    grid-column: 1;
  }

  .tag-galaxy {
    min-height: auto;
    padding: 1rem;
  }

  .tag-galaxy::before,
  .tag-galaxy::after,
  .galaxy-core {
    display: none;
  }

  .tag-node {
    position: static;
    margin: 0.3rem;
  }

  .probe-module {
    align-items: start;
    height: var(--probe-visual-height, 100dvh);
    min-height: 100svh;
    overflow-y: auto;
    padding:
      max(4.8rem, calc(var(--probe-visual-offset-top, 0px) + env(safe-area-inset-top, 0px) + 1rem))
      0.7rem
      max(1.1rem, calc(env(safe-area-inset-bottom, 0px) + 0.9rem));
    scrollbar-width: none;
  }

  .probe-module::-webkit-scrollbar {
    display: none;
  }

  .probe-module-shell {
    display: block;
    width: 100%;
    max-height: none;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .probe-module-shell::-webkit-scrollbar {
    display: none;
  }

  .probe-module-window {
    max-height: none;
  }

  .probe-module-sidecar {
    width: 100%;
    min-width: 0;
    margin-top: 0.55rem;
    margin-left: 0;
  }

  .probe-module-header,
  .probe-module-gates,
  .probe-module-search,
  .probe-module-status,
  .probe-module-list {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .probe-module-gates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .probe-module h2 {
    font-size: 1.05rem;
  }

  .neutriverse-status.probe-status-panel {
    height: auto;
  }
}
/* Occult Atlas hidden tool page */
body.occult-atlas-page #panel-wrapper,
body:has(.occult-atlas-shell) #panel-wrapper {
  display: none !important;
}

body.occult-atlas-page main[aria-label="Main Content"],
body:has(.occult-atlas-shell) main[aria-label="Main Content"],
body.occult-atlas-page #tail-wrapper,
body:has(.occult-atlas-shell) #tail-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

body.occult-atlas-page #main-wrapper > .container,
body:has(.occult-atlas-shell) #main-wrapper > .container {
  max-width: none;
  width: 100%;
}

body.occult-atlas-page main[aria-label="Main Content"] > h1,
body:has(.occult-atlas-shell) main[aria-label="Main Content"] > h1 {
  display: none;
}

.occult-atlas-shell {
  width: 100%;
  margin: 0 auto;
}

.occult-atlas-frame {
  display: block;
  width: 100%;
  height: calc(100dvh - 7rem);
  min-height: 42rem;
  border: 1px solid var(--main-border-color, rgba(255, 255, 255, 0.12));
  border-radius: 0.5rem;
  background: #111318;
}

@media (max-width: 768px) {
  .occult-atlas-frame {
    min-height: calc(100dvh - 5rem);
  }
}
