:root {
  --bg: #030806;
  --card: #0a100c;
  --text: #dff7ea;
  --muted: #6a8f7c;
  --matrix: #41ff9d;
  --cyan: #7af7d2;
  --line: rgba(122, 247, 210, 0.08);
  --line-strong: rgba(65, 255, 157, 0.18);
  --radius: 10px;
  --font: ui-monospace, "Cascadia Mono", "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
  --font-prose: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --glow: 0 0 24px rgba(65, 255, 157, 0.1);
}

/* Light = same phosphor / matrix language as dark: mint glass, green glow, CRT grain */
html[data-theme="light"] {
  --bg: #d4e8dc;
  --card: #e8f6ee;
  --text: #052818;
  --muted: #3a6b52;
  --matrix: #009a5c;
  --cyan: #008f72;
  --line: rgba(65, 255, 157, 0.22);
  --line-strong: rgba(65, 255, 157, 0.38);
  --glow: 0 0 28px rgba(65, 255, 157, 0.16), 0 0 2px rgba(65, 255, 157, 0.12);
}

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

@keyframes site-flicker {
  0%,
  100% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  97% {
    opacity: 0.99;
  }
}

@keyframes underline-glow {
  0%,
  100% {
    box-shadow: 0 1px 0 0 rgba(65, 255, 157, 0.35);
  }
  50% {
    box-shadow: 0 1px 0 0 rgba(65, 255, 157, 0.65), 0 0 12px rgba(65, 255, 157, 0.25);
  }
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  position: relative;
}

body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(65, 255, 157, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 255, 157, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
}

body.site-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 6px
  );
}

html[data-theme="light"] body.site-body::before {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(65, 255, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 255, 157, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

html[data-theme="light"] body.site-body::after {
  opacity: 0.1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 90, 48, 0.07) 3px,
    rgba(0, 90, 48, 0.07) 6px
  );
}

.site-top {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0.65rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(65, 255, 157, 0.04);
}

.site-brand {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(165deg, rgba(12, 18, 14, 0.95), rgba(5, 9, 7, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-brand:hover {
  border-color: rgba(65, 255, 157, 0.12);
  box-shadow:
    0 0 28px rgba(65, 255, 157, 0.14),
    0 0 48px rgba(65, 255, 157, 0.06),
    inset 0 1px 0 rgba(122, 247, 210, 0.06);
}
.site-brand a {
  display: block;
  color: var(--matrix);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(65, 255, 157, 0.35);
  transition: color 0.15s ease, text-shadow 0.15s ease;
}
.site-brand a:hover {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(122, 247, 210, 0.45);
}

html[data-theme="light"] .site-brand {
  background: linear-gradient(165deg, rgba(240, 255, 248, 0.98), rgba(200, 232, 214, 0.9));
  border-color: rgba(65, 255, 157, 0.35);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.35);
}
html[data-theme="light"] .site-brand a {
  text-shadow: 0 0 14px rgba(65, 255, 157, 0.4);
}
html[data-theme="light"] .site-brand a:hover {
  text-shadow: 0 0 20px rgba(122, 247, 210, 0.5);
}

.site-top-end {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-rss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  color: var(--muted);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.site-rss:hover {
  color: var(--matrix);
  border-color: rgba(65, 255, 157, 0.2);
  box-shadow: 0 0 14px rgba(65, 255, 157, 0.15);
}
.site-rss svg {
  display: block;
}

.site-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  color: var(--muted);
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font: inherit;
  line-height: 0;
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.site-theme-toggle:hover {
  color: var(--matrix);
  border-color: rgba(65, 255, 157, 0.2);
  box-shadow: 0 0 14px rgba(65, 255, 157, 0.15);
}
html[data-theme="light"] .site-theme-toggle:hover {
  border-color: rgba(65, 255, 157, 0.4);
  box-shadow: 0 0 18px rgba(65, 255, 157, 0.22);
}
.site-theme-toggle svg {
  display: block;
}
.site-theme-toggle [hidden] {
  display: none !important;
}

.site-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, text-shadow 0.15s ease;
}
.site-nav-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(122, 247, 210, 0.25);
}
.site-nav-link.is-active {
  color: var(--matrix);
  border-bottom-color: rgba(65, 255, 157, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav-link.is-active {
    animation: underline-glow 3.5s ease-in-out infinite;
  }
}

.site-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .site-shell {
    grid-template-columns: 1fr;
  }
  .site-sidebar {
    position: static !important;
    order: -1;
  }
}

.site-main {
  min-width: 0;
}

.site-sidebar {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(12, 18, 14, 0.95), rgba(5, 9, 7, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
html[data-theme="light"] .site-sidebar {
  background: linear-gradient(165deg, rgba(236, 252, 244, 0.98), rgba(198, 228, 210, 0.92));
  border-color: rgba(65, 255, 157, 0.28);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.22);
}
.site-sidebar:hover {
  border-color: rgba(65, 255, 157, 0.12);
}
html[data-theme="light"] .site-sidebar:hover {
  border-color: rgba(65, 255, 157, 0.45);
}

.sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}

.tag-cloud-link {
  color: var(--cyan);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.12s ease, text-shadow 0.12s ease;
}
.tag-cloud-link:hover {
  color: var(--matrix);
  text-shadow: 0 0 8px rgba(65, 255, 157, 0.35);
}

.tag-cloud-link.tier-1 {
  font-size: 0.75rem;
  opacity: 0.82;
}
.tag-cloud-link.tier-2 {
  font-size: 0.82rem;
}
.tag-cloud-link.tier-3 {
  font-size: 0.9rem;
}
.tag-cloud-link.tier-4 {
  font-size: 1rem;
  font-weight: 600;
}
.tag-cloud-link.tier-5 {
  font-size: 1.08rem;
  font-weight: 700;
}

.small {
  font-size: 0.82rem;
}

.tiny {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.home-heading {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 1px rgba(223, 247, 234, 0.35);
}
html[data-theme="light"] .home-heading {
  text-shadow: 0 0 10px rgba(65, 255, 157, 0.3);
}

@media (prefers-reduced-motion: no-preference) {
  .home-heading {
    animation: site-flicker 9s ease-in-out infinite;
  }
}

.home-sub {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.home-list .post-list {
  margin-top: 0.5rem;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.pager a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.12s ease, text-shadow 0.12s ease;
}
.pager a:hover {
  color: var(--matrix);
  text-shadow: 0 0 10px rgba(65, 255, 157, 0.35);
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease;
}
.post-list li:hover {
  border-bottom-color: rgba(65, 255, 157, 0.12);
}
html[data-theme="light"] .post-list li:hover {
  border-bottom-color: rgba(65, 255, 157, 0.35);
}
.post-list-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}
.post-list-title:hover {
  color: var(--matrix);
  text-shadow: 0 0 12px rgba(65, 255, 157, 0.25);
}
.post-list-title--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
}
.post-list-icon {
  flex-shrink: 0;
  color: var(--matrix);
  font-size: 0.95em;
  line-height: 1;
  opacity: 0.95;
}
.post-list-title-text {
  min-width: 0;
}
.post-list-time {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.post-list-body {
  margin-top: 0.75rem;
}
.excerpt {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-prose);
}

.prose {
  font-size: 1.05rem;
  font-family: var(--font-prose);
  letter-spacing: 0;
}
.prose h1 {
  font-size: 1.85rem;
  margin-top: 0;
  letter-spacing: 0.03em;
  color: var(--text);
}
.prose h1.post-title--with-icon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.post-title-icon {
  flex-shrink: 0;
  color: var(--matrix);
  font-size: 1.05em;
  line-height: 1;
  opacity: 0.95;
}
.post-title-text {
  flex: 1;
  min-width: 0;
}
.prose h2,
.prose h3 {
  margin-top: 1.75em;
  scroll-margin-top: 1rem;
}
.prose a {
  color: var(--cyan);
  transition: color 0.12s ease, text-shadow 0.12s ease;
}
.prose a:hover {
  color: var(--matrix);
  text-shadow: 0 0 8px rgba(65, 255, 157, 0.25);
}
.prose img {
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.prose code {
  background: var(--card);
  padding: 0.12em 0.35em;
  border-radius: 4px;
  font-size: 0.88em;
  font-family: var(--font);
  border: 1px solid var(--line);
  color: var(--cyan);
}
.prose pre {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  overflow: auto;
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 0.88rem;
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.35);
}
html[data-theme="light"] .prose pre {
  box-shadow: inset 0 0 28px rgba(0, 60, 35, 0.08), inset 0 0 0 1px rgba(65, 255, 157, 0.12);
}
html[data-theme="light"] .prose code {
  box-shadow: 0 0 8px rgba(65, 255, 157, 0.08);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.4rem 0.6rem;
}

.post-admin-stats {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.heading-permalink {
  margin-left: 0.35rem;
  font-size: 0.75em;
  opacity: 0.45;
  text-decoration: none;
  color: var(--muted);
}
.heading-permalink:hover {
  opacity: 1;
  color: var(--matrix);
}

/* Search (dynamic /search) */
.search-page {
  min-width: 0;
}

.card-search {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(165deg, rgba(12, 18, 14, 0.92), rgba(5, 9, 7, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.04);
}
html[data-theme="light"] .card-search {
  background: linear-gradient(165deg, rgba(232, 252, 242, 0.96), rgba(190, 224, 204, 0.88));
  border-color: rgba(65, 255, 157, 0.3);
  box-shadow: var(--glow), inset 0 1px 0 rgba(122, 247, 210, 0.2);
}

.search-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.search-input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-input:focus {
  outline: none;
  border-color: rgba(65, 255, 157, 0.35);
  box-shadow: 0 0 0 1px rgba(65, 255, 157, 0.12);
}

.search-submit {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(65, 255, 157, 0.45);
  background: linear-gradient(180deg, #0f1812, #0a0f0c);
  color: var(--matrix);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.search-submit:hover {
  border-color: var(--matrix);
  color: #b8ffe0;
  box-shadow: 0 0 20px rgba(65, 255, 157, 0.15);
}

html[data-theme="light"] .search-submit {
  border-color: rgba(65, 255, 157, 0.55);
  background: linear-gradient(180deg, #b8e8cc, #8fd4ae);
  color: #023a1f;
  text-shadow: 0 0 12px rgba(65, 255, 157, 0.35);
}
html[data-theme="light"] .search-submit:hover {
  border-color: rgba(65, 255, 157, 0.85);
  color: #012814;
  box-shadow: 0 0 24px rgba(65, 255, 157, 0.35);
}

.search-meta {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.search-kind {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.search-kind-post {
  color: var(--cyan);
  border-color: rgba(122, 247, 210, 0.25);
}
.search-kind-page {
  color: #e8c547;
  border-color: rgba(232, 197, 71, 0.35);
}

.search-results .search-hit-card {
  padding: 1.15rem 0;
}

.search-snippet {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-prose);
  letter-spacing: 0;
  line-height: 1.55;
}

mark.search-hit {
  background: rgba(65, 255, 157, 0.18);
  color: var(--matrix);
  padding: 0.05em 0.2em;
  border-radius: 3px;
}
html[data-theme="light"] mark.search-hit {
  background: rgba(65, 255, 157, 0.35);
  color: #043a24;
  box-shadow: 0 0 8px rgba(65, 255, 157, 0.2);
}

.search-pager {
  margin-top: 1.5rem;
}

/* Post / page body: one-shot “matrix glyphs settle” (Publisher adds .matrix-settle on <article>) */
@keyframes matrix-glyph-settle {
  0% {
    opacity: 0;
    transform: translateY(-1.25em) scale(0.96);
    filter: blur(3.5px);
    text-shadow:
      0 0 16px rgba(65, 255, 157, 1),
      0 0 36px rgba(65, 255, 157, 0.65),
      0 0 56px rgba(0, 255, 130, 0.25);
  }
  52% {
    opacity: 1;
    transform: translateY(0.06em) scale(1.01);
    filter: blur(0);
    text-shadow:
      0 0 12px rgba(65, 255, 157, 0.95),
      0 0 28px rgba(65, 255, 157, 0.5);
  }
  78% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 6px rgba(65, 255, 157, 0.35);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    text-shadow: none;
  }
}

.matrix-settle > * {
  opacity: 0;
  animation: matrix-glyph-settle 1.05s cubic-bezier(0.14, 0.78, 0.26, 1.02) forwards;
}

.matrix-settle > *:nth-child(1) {
  animation-delay: 0s;
}
.matrix-settle > *:nth-child(2) {
  animation-delay: 0.05s;
}
.matrix-settle > *:nth-child(3) {
  animation-delay: 0.1s;
}
.matrix-settle > *:nth-child(4) {
  animation-delay: 0.15s;
}
.matrix-settle > *:nth-child(5) {
  animation-delay: 0.2s;
}
.matrix-settle > *:nth-child(6) {
  animation-delay: 0.25s;
}
.matrix-settle > *:nth-child(7) {
  animation-delay: 0.3s;
}
.matrix-settle > *:nth-child(8) {
  animation-delay: 0.35s;
}
.matrix-settle > *:nth-child(9) {
  animation-delay: 0.4s;
}
.matrix-settle > *:nth-child(10) {
  animation-delay: 0.45s;
}
.matrix-settle > *:nth-child(11) {
  animation-delay: 0.5s;
}
.matrix-settle > *:nth-child(12) {
  animation-delay: 0.55s;
}
.matrix-settle > *:nth-child(13) {
  animation-delay: 0.6s;
}
.matrix-settle > *:nth-child(14) {
  animation-delay: 0.65s;
}
.matrix-settle > *:nth-child(15) {
  animation-delay: 0.7s;
}
.matrix-settle > *:nth-child(16) {
  animation-delay: 0.75s;
}
.matrix-settle > *:nth-child(17) {
  animation-delay: 0.8s;
}
.matrix-settle > *:nth-child(18) {
  animation-delay: 0.85s;
}
.matrix-settle > *:nth-child(19) {
  animation-delay: 0.9s;
}
.matrix-settle > *:nth-child(20) {
  animation-delay: 0.95s;
}
.matrix-settle > *:nth-child(21) {
  animation-delay: 1s;
}
.matrix-settle > *:nth-child(22) {
  animation-delay: 1.05s;
}
.matrix-settle > *:nth-child(23) {
  animation-delay: 1.1s;
}
.matrix-settle > *:nth-child(24) {
  animation-delay: 1.15s;
}
.matrix-settle > *:nth-child(25) {
  animation-delay: 1.2s;
}
.matrix-settle > *:nth-child(26) {
  animation-delay: 1.25s;
}
.matrix-settle > *:nth-child(27) {
  animation-delay: 1.3s;
}
.matrix-settle > *:nth-child(28) {
  animation-delay: 1.35s;
}
.matrix-settle > *:nth-child(29) {
  animation-delay: 1.4s;
}
.matrix-settle > *:nth-child(30) {
  animation-delay: 1.45s;
}
.matrix-settle > *:nth-child(31) {
  animation-delay: 1.5s;
}
.matrix-settle > *:nth-child(32) {
  animation-delay: 1.55s;
}
.matrix-settle > *:nth-child(33) {
  animation-delay: 1.6s;
}
.matrix-settle > *:nth-child(34) {
  animation-delay: 1.65s;
}
.matrix-settle > *:nth-child(35) {
  animation-delay: 1.7s;
}
.matrix-settle > *:nth-child(36) {
  animation-delay: 1.75s;
}
.matrix-settle > *:nth-child(37) {
  animation-delay: 1.8s;
}
.matrix-settle > *:nth-child(38) {
  animation-delay: 1.85s;
}
.matrix-settle > *:nth-child(39) {
  animation-delay: 1.9s;
}
.matrix-settle > *:nth-child(40) {
  animation-delay: 1.95s;
}
.matrix-settle > *:nth-child(n + 41) {
  animation-delay: 2.05s;
}

/* Injected after load; must not replay the entrance */
.matrix-settle > .post-admin-stats {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .matrix-settle > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    text-shadow: none !important;
  }
}
