:root {
  --bg: #06101b;
  --bg-2: #0a1724;
  --panel: rgba(8, 19, 30, 0.88);
  --panel-strong: rgba(12, 27, 41, 0.94);
  --cyan: #79ffe1;
  --cyan-dim: #2d8f86;
  --amber: #ffbd72;
  --red: #ff6b73;
  --text: #c9f8ee;
  --muted: #769995;
  --line: rgba(121, 255, 225, 0.28);
  --shadow: rgba(42, 255, 215, 0.18);
  --mono: "Courier New", "Fira Code", Consolas, monospace;
  --sans: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.75;
  background:
    radial-gradient(circle at 18% 14%, rgba(31, 116, 115, 0.25), transparent 34rem),
    radial-gradient(circle at 82% 0%, rgba(110, 35, 59, 0.2), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #020812 100%);
  letter-spacing: 0;
}

body.snap-lock {
  overscroll-behavior: none;
}

body::before,
.crt-layer {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(121, 255, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 255, 225, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 86%, transparent);
}

.crt-layer {
  z-index: 20;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 5px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.018), rgba(0, 255, 170, 0.014), rgba(0, 76, 255, 0.018));
  mix-blend-mode: screen;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--amber);
  text-shadow: 0 0 10px rgba(255, 189, 114, 0.55);
}

a:active,
button:active {
  color: inherit;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid rgba(121, 255, 225, 0.42);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.is-home .site-shell {
  width: 100%;
  padding-top: 0;
}

.site-header,
.terminal-frame,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(4, 12, 22, 0.72);
  box-shadow: 0 0 28px rgba(32, 255, 219, 0.09), inset 0 0 34px rgba(32, 255, 219, 0.035);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.is-home .site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 12;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-hidden .is-home .site-header,
.is-home.header-hidden .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -130%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.nav a,
.ghost-button,
.pagination a,
.pagination span {
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0.3rem 0;
  border: 0;
  background: transparent;
  user-select: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.18rem;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.nav a:active,
.nav a:focus {
  color: var(--text);
  text-shadow: none;
}

.nav a:focus-visible {
  outline: none;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  background: var(--amber);
  opacity: 0.8;
}

.terminal-frame {
  min-height: 68vh;
  padding: clamp(18px, 3vw, 34px);
}

.is-home .terminal-frame {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  border-top: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.is-home .site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  border-top: 1px solid rgba(121, 255, 225, 0.22);
}

.site-footer span {
  overflow-wrap: anywhere;
}

.panel,
.post-card,
.notice {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: inset 0 0 32px rgba(121, 255, 225, 0.035);
}

.terminal-label {
  display: inline-block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.hero-cover {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 18vh, 190px) max(24px, calc((100vw - 1180px) / 2)) clamp(72px, 12vh, 128px);
  background: #020812;
}

.hero-cover::before,
.hero-cover::after,
.hero-visual {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-cover::before {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.94) 0%, rgba(2, 8, 18, 0.62) 38%, rgba(2, 8, 18, 0.22) 62%, rgba(2, 8, 18, 0.72) 100%),
    linear-gradient(0deg, rgba(2, 8, 18, 1) 0%, transparent 36%, rgba(2, 8, 18, 0.42) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}

.hero-cover::after {
  background:
    linear-gradient(rgba(121, 255, 225, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 255, 225, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 72% 35%, rgba(121, 255, 225, 0.2), transparent 20rem),
    radial-gradient(circle at 25% 78%, rgba(255, 107, 115, 0.16), transparent 18rem);
  background-size: 42px 42px, 42px 42px, auto, auto;
  mix-blend-mode: screen;
}

.hero-visual {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(121, 255, 225, 0.46) 18.1%, transparent 18.25% 82%, rgba(255, 189, 114, 0.38) 82.1%, transparent 82.25%),
    linear-gradient(0deg, transparent 0 22%, rgba(121, 255, 225, 0.18) 22.08%, transparent 22.25% 76%, rgba(255, 107, 115, 0.2) 76.08%, transparent 76.25%);
  opacity: 0.62;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-left: clamp(0px, 3vw, 32px);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  text-shadow: 0 0 12px rgba(121, 255, 225, 0.52);
}

.hero-content h1 {
  margin: 0;
  color: #fff7ca;
  font-family: var(--mono);
  font-size: clamp(3.6rem, 13vw, 9.8rem);
  line-height: 0.92;
  text-shadow:
    0 0 18px rgba(255, 189, 114, 0.56),
    0 0 50px rgba(121, 255, 225, 0.26);
}

.hero-content p:last-child {
  width: fit-content;
  max-width: 100%;
  margin: 24px 0 0;
  border-left: 2px solid rgba(121, 255, 225, 0.42);
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  padding: 0.1rem 0 0.1rem 0.75rem;
}

.hero-jump {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  width: 56px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font-family: var(--mono);
  transform: translateX(-50%);
  box-shadow: none;
  padding: 0;
}

.hero-jump span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(121, 255, 225, 0.82);
  transform: translateY(-4px);
}

.hero-jump:hover {
  color: var(--amber);
}

.sidebar-toggle {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 14;
  display: grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 5px 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  padding: 0.25rem 0;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.sidebar-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(121, 255, 225, 0.7);
}

.sidebar-toggle b {
  grid-column: 2;
  grid-row: 1 / 4;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
}

.sidebar-toggle:hover {
  color: var(--amber);
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0, 4, 10, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.sidebar-open .drawer-scrim {
  opacity: 1;
  pointer-events: auto;
}

.home-stage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.side-console {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 16;
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(340px, calc(100vw - 22px));
  padding: 18px 14px;
  overflow-y: auto;
  background:
    linear-gradient(90deg, rgba(4, 12, 22, 0.98), rgba(7, 18, 32, 0.94)),
    radial-gradient(circle at 0 0, rgba(121, 255, 225, 0.14), transparent 18rem);
  border-right: 1px solid rgba(121, 255, 225, 0.32);
  box-shadow: 22px 0 60px rgba(0, 0, 0, 0.46), inset -18px 0 32px rgba(121, 255, 225, 0.035);
  transform: translateX(-105%);
  transition: transform 180ms ease;
}

.sidebar-open .side-console {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  color: var(--amber);
  font-family: var(--mono);
}

.drawer-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 1.25rem;
  line-height: 1;
}

.drawer-close:hover {
  color: var(--amber);
}

.side-widget {
  border-top: 1px solid rgba(121, 255, 225, 0.2);
  background: transparent;
  box-shadow: none;
}

.profile-card {
  padding: 14px;
}

.nav-widget {
  padding: 14px 14px 16px;
}

.nav-widget h3 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 400;
}

.side-widget summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 13px 15px;
  user-select: none;
}

.side-widget summary::-webkit-details-marker {
  display: none;
}

.side-widget summary b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  color: var(--amber);
  font-weight: 400;
  line-height: 1;
}

.side-widget[open] summary b {
  color: var(--red);
}

.side-widget[open] summary b::before {
  content: "-";
}

.side-widget[open] summary b {
  font-size: 0;
}

.side-widget[open] summary b::before {
  font-size: 0.9rem;
}

.widget-body {
  padding: 0 15px 17px;
  border-top: 1px dashed rgba(121, 255, 225, 0.18);
}

.profile-card .widget-body {
  padding: 0;
  border-top: 0;
}

.profile-widget {
  color: #b7d9d2;
}

.profile-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.profile-widget h2 {
  margin: 0;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 1.35rem;
}

.profile-widget p {
  margin: 0.22rem 0;
  font-size: 0.92rem;
}

.profile-copy {
  padding-top: 10px;
  border-top: 1px dashed rgba(121, 255, 225, 0.18);
}

.avatar-core {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--cyan-dim);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(121, 255, 225, 0.08), rgba(255, 107, 115, 0.08)),
    radial-gradient(circle, rgba(121, 255, 225, 0.18), transparent 62%);
  box-shadow: 0 0 22px var(--shadow);
  overflow: hidden;
}

.avatar-core span {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 2.6rem;
  text-shadow: 0 0 16px rgba(255, 189, 114, 0.58);
}

.avatar-core img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.skill-list {
  display: grid;
  gap: 3px;
  margin: 12px 0 0;
  padding: 10px 0 0 0;
  border-top: 1px dashed rgba(121, 255, 225, 0.16);
  list-style: none;
}

.skill-list li {
  color: #c9f8ee;
  font-size: 0.9rem;
  line-height: 1.6;
}

.skill-list li::before {
  content: "- ";
  color: var(--cyan);
  font-family: var(--mono);
}

.warning-line {
  margin: 10px 0 0;
  color: var(--red) !important;
  font-family: var(--mono);
  font-size: 0.78rem !important;
}

.mini-links {
  display: grid;
  gap: 10px;
}

.mini-links a {
  border-left: 0;
  color: var(--text);
  font-family: var(--mono);
  padding-left: 0;
}

.mini-links a::before {
  content: "/ ";
  color: var(--cyan);
}

.blog-stream {
  min-width: 0;
  max-width: 920px;
  margin: 0 auto;
}

.stream-head {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(121, 255, 225, 0.22);
  padding-bottom: 18px;
}

.stream-head span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.stream-head h2 {
  margin: 0;
  color: var(--amber);
  font-family: var(--mono);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  text-shadow: 0 0 14px rgba(255, 145, 92, 0.34);
}

.cnblogs-like-list {
  display: grid;
  gap: 0;
}

.stream-post {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 30px);
  padding: 28px 0;
  border-bottom: 1px dashed rgba(121, 255, 225, 0.18);
}

.stream-post::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 96px;
  width: 1px;
  background: linear-gradient(var(--cyan), transparent);
  opacity: 0.42;
}

.stream-post time {
  color: #d5a94e;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.35;
}

.stream-post a {
  min-width: 0;
  display: block;
}

.stream-post h3 {
  margin: 0 0 10px;
  color: #ecf5b7;
  font-size: clamp(1.18rem, 2.4vw, 1.72rem);
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.stream-post p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.section-heading,
.article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

.section-heading h1,
.section-heading h2,
.article-header h1 {
  margin: 4px 0 0;
  color: var(--amber);
  font-family: var(--mono);
  line-height: 1.25;
  text-shadow: 0 0 14px rgba(255, 145, 92, 0.36);
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    rgba(39, 25, 48, 0.82);
  color: #ffc8bd;
}

.notice strong {
  color: var(--red);
  font-family: var(--mono);
}

.article-header time {
  color: #d5a94e;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
}

.pagination a,
.pagination span {
  border: 0;
  background: transparent;
  padding: 0.25rem 0;
}

.ghost-button:active,
.ghost-button:focus,
.pagination a:active,
.pagination a:focus {
  color: var(--text);
  outline: none;
  text-shadow: none;
}

.pagination b {
  color: var(--muted);
  font-size: 0.8rem;
}

.pagination span {
  opacity: 0.42;
}

.article-panel,
.archive-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 42px);
}

.article-header {
  margin-bottom: 28px;
}

.article-header h1 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.source-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.article-content {
  color: #d5eee8;
  font-size: 1rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2em;
  color: var(--amber);
  font-family: var(--mono);
  line-height: 1.3;
}

.article-content h1 {
  font-size: 1.7rem;
}

.article-content h2 {
  padding-left: 12px;
  border-left: 3px solid var(--cyan-dim);
  font-size: 1.35rem;
}

.article-content p,
.article-content li {
  overflow-wrap: anywhere;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--red);
  background: rgba(46, 28, 54, 0.68);
  color: #ffc8bd;
}

.article-content code {
  border: 1px solid rgba(121, 255, 225, 0.18);
  background: rgba(121, 255, 225, 0.07);
  color: #fff0bf;
  font-family: var(--mono);
  font-size: 0.92em;
  padding: 0.12em 0.35em;
}

.article-content pre,
.article-content figure.highlight {
  overflow-x: auto;
  border: 1px solid rgba(121, 255, 225, 0.18);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 5px),
    #07111c;
  box-shadow: inset 0 0 24px rgba(121, 255, 225, 0.04);
}

.article-content pre {
  padding: 1rem;
}

.article-content pre code {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.article-content figure.highlight {
  margin: 1.4rem 0;
  padding: 0;
}

.article-content figure.highlight table {
  width: 100%;
  margin: 0;
  border: 0;
}

.article-content figure.highlight td {
  border: 0;
  padding: 0;
}

.article-content figure.highlight .gutter {
  width: 1%;
  min-width: 48px;
  border-right: 1px solid rgba(121, 255, 225, 0.14);
  color: rgba(121, 255, 225, 0.36);
  text-align: right;
  user-select: none;
}

.article-content figure.highlight .code {
  color: #d7fff4;
}

.article-content figure.highlight .keyword,
.article-content figure.highlight .selector-tag,
.article-content figure.highlight .subst {
  color: #ff7d8a;
}

.article-content figure.highlight .built_in,
.article-content figure.highlight .type,
.article-content figure.highlight .class .title {
  color: #7dc8ff;
}

.article-content figure.highlight .title,
.article-content figure.highlight .function .title,
.article-content figure.highlight .section {
  color: #ffd479;
}

.article-content figure.highlight .string,
.article-content figure.highlight .attr,
.article-content figure.highlight .attribute,
.article-content figure.highlight .symbol,
.article-content figure.highlight .bullet {
  color: #9dffb8;
}

.article-content figure.highlight .number,
.article-content figure.highlight .literal,
.article-content figure.highlight .variable,
.article-content figure.highlight .template-variable {
  color: #c89bff;
}

.article-content figure.highlight .comment,
.article-content figure.highlight .quote,
.article-content figure.highlight .deletion {
  color: #6f8f8b;
  font-style: italic;
}

.article-content figure.highlight .meta,
.article-content figure.highlight .doctag,
.article-content figure.highlight .name,
.article-content figure.highlight .selector-id,
.article-content figure.highlight .selector-class {
  color: #66ffe2;
}

.article-content figure.highlight .regexp,
.article-content figure.highlight .link {
  color: #ffb58a;
}

.article-content figure.highlight .addition {
  color: #9dffb8;
}

.article-content figure.highlight .emphasis {
  font-style: italic;
}

.article-content figure.highlight .strong {
  font-weight: 700;
}

.article-content figure.highlight pre {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-content figure.highlight .gutter pre {
  padding: 1rem 0.75rem;
}

.article-content figure.highlight .code pre {
  padding: 1rem;
}

.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  border: 1px solid rgba(121, 255, 225, 0.2);
  padding: 0.72rem 0.85rem;
}

.article-content th {
  color: var(--amber);
  background: rgba(121, 255, 225, 0.06);
}

.archive-page {
  max-width: 980px;
  margin: 0 auto;
}

.category-archive {
  display: grid;
  gap: 22px;
}

.archive-category {
  padding: clamp(18px, 3vw, 28px);
}

.archive-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(121, 255, 225, 0.22);
}

.archive-category h2 {
  margin: 4px 0 0;
  color: var(--amber);
  font-family: var(--mono);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(255, 145, 92, 0.28);
}

.archive-category-head > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  white-space: nowrap;
}

.archive-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 18px, 1180px);
    padding: 9px 0;
  }

  .site-header,
  .site-footer,
  .section-heading,
  .article-top {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .terminal-frame {
    padding: 14px;
  }

  .stream-post {
    grid-template-columns: 1fr;
  }

  .article-panel,
  .archive-panel {
    padding: 18px;
  }

  .avatar-core {
    width: 112px;
    height: 112px;
  }

  .is-home .site-shell {
    width: 100%;
    padding-top: 0;
  }

  .is-home .site-header {
    top: 9px;
    width: calc(100% - 18px);
  }

  .sidebar-toggle {
    top: 9px;
    left: 9px;
  }

  .side-console {
    width: min(360px, calc(100vw - 18px));
    padding: 18px 12px;
  }

  .hero-cover {
    min-height: 92vh;
    padding: 118px 18px 56px;
  }

  .hero-cover::before {
    background-position: 58% center;
  }

  .home-stage {
    width: min(100% - 18px, 1180px);
    gap: 24px;
  }

  .stream-post {
    gap: 12px;
    padding: 22px 0;
  }

  .stream-post::before {
    display: none;
  }

  .notice {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-wrap: wrap;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .crt-layer {
    opacity: 0.35;
  }
}
