@font-face {
  font-family: "Jersey 25 Custom";
  src: url("Jersey25-Custom.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #f0f0f0;
  --text: #1d1d1b;
  --muted: rgba(29, 29, 27, 0.64);
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(29, 29, 27, 0.72);
  --crt-glow: rgba(29, 29, 27, 0.28);
  --section-text: #1d1d1b;
  --child-text: rgba(29, 29, 27, 0.76);
  --entry-text: rgba(27, 27, 26, 0.68);
  --dot: rgba(29, 29, 27, 0.85);
  --dot-soft: rgba(29, 29, 27, 0.62);
  --dot-size: 6px;
  --dot-border: 1px;
  --space-xs: 4px;
  /*--space-sm: 6px;
  --space-md: 8px;*/
  --space-lg: 25px;
  --indent: 14px;
  --section-line-offset: -11px;
  --child-line-offset: 3px;
  --entry-meta: rgba(27, 27, 26, 0.52);
  --entry-dot: rgba(29, 29, 27, 0.74);
  --cursor-size: 16px;
  --cursor-color: rgba(120, 120, 118, 0.72);
  --cursor-color-active: rgba(55, 57, 55, 0.9);
  
  --tag-ep: #d16060;
  --tag-single: #d98c41;
  --tag-album: #3a7ca5;

/*
  --color-github: #24292f;
  --color-kaggle: #20beff;
  --color-instagram: #e1306c;
  --color-email: #ea4335;
*/
--reveal-transition: max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 320ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms steps(5, end), margin-top 320ms ease;
  }

body.dark-mode {
  --bg: #131313;
  --text: #f2efe7;
  --muted: rgba(242, 239, 231, 0.7);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(242, 239, 231, 0.76);
  --crt-glow: rgba(242, 239, 231, 0.28);
  --section-text: rgba(242, 239, 231, 0.9);
  --child-text: rgba(242, 239, 231, 0.82);
  --entry-text: rgba(241, 241, 238, 0.72);
  --dot: rgba(255, 255, 255, 0.9);
  --dot-soft: rgba(255, 255, 255, 0.7);
  --entry-meta: rgba(241, 241, 238, 0.5);
  --entry-dot: rgba(255, 255, 255, 0.8);
  --cursor-color: rgba(208, 208, 204, 0.72);
  --cursor-color-active: rgba(143, 143, 138, 0.9);

  /*
  --color-github: #ffffff;
  --color-kaggle: #40ccf7b4;
  --color-instagram: #f54284b9;
  --color-email: #f2efe7;
*/

  --tag-ep: #d16060;
  --tag-single: #d98c41;
  --tag-album: #3a7ca5;

}


* { box-sizing: border-box; }

::selection {
  background: var(--text);
  color: var(--bg);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background: var(--bg);
  color: var(--text);
  font-family: "Jersey 25 Custom", monospace;
  line-height: 1.5;
  transition: background 260ms ease, color 260ms ease;
}

.icon-grid-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.1;
  filter: drop-shadow(0 0 5px var(--text));
  image-rendering: pixelated;
}

body::after {
  content: "";
  position: fixed;
  inset: 72px;
  z-index: 4;
  pointer-events: none;
  border-radius: 0;
  transform: perspective(1400px) rotateX(1deg) rotateY(-0.8deg) scale(5.015);
  transform-origin: center;
  opacity: 0.28;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, var(--line) 3px 4px),
    radial-gradient(ellipse at center, transparent 50%, var(--line) 125%);
  mix-blend-mode: overlay;
}

.detail-image {
  width: 100%;
  max-width: 760px;
  border-radius: 0;
  margin: 16px 0;
}

.page-shell {
  position: relative;
  z-index: 2;
}

button,
a {
  font: inherit;
  cursor: pointer;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

button:focus,
button:focus-visible { outline: none; }

.theme-switch {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  filter: blur(0);
  transform: translateY(8px);
  transition: color 260ms ease;
}

.theme-switch__sun,
.theme-switch__moon {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
  line-height: 0;
  background: currentColor;
  border-radius: 0;
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms steps(5, end), color 260ms ease;
}

.theme-switch__sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0);
  clip-path: polygon(33% 0, 67% 0, 67% 8%, 83% 8%, 83% 17%, 92% 17%, 92% 33%, 100% 33%, 100% 67%, 92% 67%, 92% 83%, 83% 83%, 83% 92%, 67% 92%, 67% 100%, 33% 100%, 33% 92%, 17% 92%, 17% 83%, 8% 83%, 8% 67%, 0 67%, 0 33%, 8% 33%, 8% 17%, 17% 17%, 17% 8%, 33% 8%);
}

.theme-switch__moon {
  opacity: 0;
  transform: scale(0.7) rotate(-24deg);
  filter: blur(0);
  clip-path: polygon(33% 0, 67% 0, 67% 8%, 83% 8%, 83% 17%, 92% 17%, 92% 33%, 100% 33%, 100% 67%, 92% 67%, 92% 83%, 83% 83%, 83% 92%, 67% 92%, 67% 100%, 33% 100%, 33% 92%, 17% 92%, 17% 83%, 8% 83%, 8% 67%, 0 67%, 0 33%, 8% 33%, 8% 17%, 17% 17%, 17% 8%, 33% 8%);
}

.theme-switch__moon::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--bg);
  clip-path: polygon(33% 0, 67% 0, 67% 8%, 83% 8%, 83% 17%, 92% 17%, 92% 33%, 100% 33%, 100% 67%, 92% 67%, 92% 83%, 83% 83%, 83% 92%, 67% 92%, 67% 100%, 33% 100%, 33% 92%, 17% 92%, 17% 83%, 8% 83%, 8% 67%, 0 67%, 0 33%, 8% 33%, 8% 17%, 17% 17%, 17% 8%, 33% 8%);
}

.theme-switch__moon::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 9px;
  width: 6px;
  height: 6px;
  background: currentColor;
}

body.dark-mode .theme-switch__sun { opacity: 0; transform: scale(0.7) rotate(24deg); filter: blur(0); }
body.dark-mode .theme-switch__moon { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
body.dark-mode .theme-switch { color: #f2efe7; }

.page-shell {
  max-width: 760px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 18px;
  padding-bottom: 80px;
  display: grid;
  align-items: start;
  justify-items: center;
  padding-top: 25vh;
}

.wiki-page {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  max-width: 760px;
}

.top-block {
  width: 100%;
  max-width: 760px;
  opacity: 0;
  filter: blur(0);
  transform: translateY(8px);
}

p.intro-text {
  margin-bottom: 0px;
}

h1 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.08;
  /*letter-spacing: -0.06em;*/
  font-weight: 500;
  color: var(--text);
  transition: color 260ms ease;
}

h1 a {
  color: inherit;
  text-decoration: none;
}

.intro-text {
  width: 100%;
  max-width: 760px;
  margin: 0 0 8px;
  color: var(--entry-text);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(8px);
}

h4 {
  margin: 0;
  
  line-height: 1.08;
  /*letter-spacing: -0.06em;*/
  font-weight: 500;
  color: var(--text);
  transition: color 260ms ease;
}

.archive-tree {
  display: grid;
  gap: var(--space-md);
  width: 100%;
  max-width: 760px;
}

.archive-node,
.leaf-group {
  position: relative;
  display: grid;
  gap: var(--space-sm);
  overflow: visible;
  transition: var(--reveal-transition);
}

.archive-node {
  opacity: 0;
  transform: translateY(8px);
}

.section-label,
.node-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--section-text);
  background: transparent;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), color 260ms ease;
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: lowercase;
  border: none;
  font-weight: 500;
  width: fit-content;
  position: relative;
  text-decoration: none;

  height: 24px;}

.section-label { align-items: baseline; }
.node-label { color: var(--child-text); }
.node-link { text-decoration: none; }

.copy-feedback {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  color: var(--entry-text);
  font-size: 0.96em;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translateY(-50%);
}

.copy-feedback.is-visible {
  animation: oneUpPop 900ms steps(6, end) both;
}

.section-label { align-items: center; }

.label-text {
  position: relative;
  display: inline-block;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.label-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), background 260ms ease;
}

.dot,
.branch-dot,
.entry-item::before {
  display: inline-block;
  box-sizing: border-box;
  border-radius: 0;
  background: var(--dot);
  transition: opacity 260ms ease, background 260ms ease, border-color 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 7px;
  min-width: 7px;
  height: 7px;
  max-width: 7px;
  max-height: 7px;
  aspect-ratio: 1 / 1;
  border: var(--dot-border) solid transparent;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
}

.dot { transform-origin: center; }
body.dark-mode .dot,
body.dark-mode .branch-dot { border-color: transparent; }

body.dark-mode .archive-node.is-open > .section-label .dot,
body.dark-mode .leaf-group.is-open > .node-label .branch-dot {
  border-color: var(--dot);
}

.archive-node.is-open > .section-label .dot,
.leaf-group.is-open > .node-label .branch-dot {
  background: transparent;
  border-color: var(--dot);
}

.archive-node:not(.is-open) > .section-label .dot,
.leaf-group:not(.is-open) > .node-label .branch-dot {
  background: var(--dot);
  border-color: transparent;
}

.leaf-group.is-empty > .node-label .branch-dot {
  background: var(--dot);
  border-color: transparent;
}

.section-label.is-link { text-decoration: none; }

.section-label:hover .label-text::after,
.node-label:hover .label-text::after,
.entry-item a:hover::after,
.entry-item.entry-link:hover::after,
.entry-item:hover a::after { transform: scaleX(1); }

.section-label:hover .label-text,
.node-label:hover .label-text,
.section-label:hover .dot,
.node-label:hover .branch-dot {
  opacity: 0.76;
  transform: translateX(1px);
}

.entry-item {
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);

  min-height: 24px;}

.entry-item:hover {
  transform: translateX(1px);
}

.entry-item a {
  display: inline-block;
  position: relative;
}

.entry-link {
  color: var(--entry-text);
  text-decoration: none;
}

.entry-item a::after,
.entry-item.entry-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--dot);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
  pointer-events: none;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), background 260ms ease;
}

.section-label:hover .dot,
.node-label:hover .branch-dot {
  transform: translateX(1px);
}

.link-arrow {
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: -6px;
  position: relative;
  background: transparent;
  font-size: 0.46em;
  line-height: 1;
  vertical-align: middle;
  transform: none;
  border: none;
  border-radius: 0;
  opacity: 0.82;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-label:hover .link-arrow {
  opacity: 1;
  transform: translateX(1px);
}

.node-children,
.wiki-list {
  position: relative;
  display: grid;
  gap: var(--space-sm);
  margin-left: var(--indent);
  padding-left: var(--space-lg);
  padding-right:0;
  
  overflow: hidden;
  filter: blur(0);
  transition: var(--reveal-transition);
}

ul.wiki-list {
  padding-right: 0px;
}

.node-children {
  margin-top: 0;
  margin-left: calc(var(--indent) + var(--section-line-offset));
  padding-left: var(--space-lg);
}

.music-intro {
  margin: 0;
  color: var(--entry-text);
  font-size: 1rem;
  line-height: 1.5;
}

.wiki-list {
  list-style: none;
  margin: 0 0 0 var(--child-line-offset);
  padding: 0 var(--space-lg) 0px;
  gap: var(--space-md);
}

.node-children::before,
.wiki-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--dot);
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.archive-node > .node-children,
.leaf-group > .wiki-list {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transform: translateY(-3px);
  filter: blur(0);
  pointer-events: none;
}

.archive-node > .node-children > .leaf-group {
  opacity: 0;
  transform: translateY(-3px);
  filter: blur(0);
  transition: var(--reveal-transition);
}

.archive-node.is-open > .node-children,
.leaf-group.is-open > .wiki-list {
  max-height: 900px;
  opacity: 1;
  margin-top: 0;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.archive-node.is-open > .node-children > .leaf-group {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.archive-node.is-open > .node-children > .leaf-group,
.archive-node.is-open > .node-children > .entry-item,
.leaf-group.is-open > .wiki-list > .entry-item {
  animation: archiveReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) both;

  min-height: 24px;}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(1),
.archive-node.is-open > .node-children > .entry-item:nth-child(1),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(1) {
  animation-delay: 40ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(2),
.archive-node.is-open > .node-children > .entry-item:nth-child(2),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(2) {
  animation-delay: 100ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(3),
.archive-node.is-open > .node-children > .entry-item:nth-child(3),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(3) {
  animation-delay: 160ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(4),
.archive-node.is-open > .node-children > .entry-item:nth-child(4),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(4) {
  animation-delay: 220ms;
}

.archive-node.is-collapsed > .node-children,


.leaf-group.is-collapsed > .wiki-list::before {
  transform: scaleY(0);
  transition-duration: 500ms;
}

.archive-node.is-collapsed > .node-children::before {
  transform: scaleY(0);
  transition-duration: 500ms;
}

@keyframes archiveClose {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3px);
  }
}

.archive-node.is-collapsed > .node-children > .leaf-group,
.archive-node.is-collapsed > .node-children > .entry-item,
.leaf-group.is-collapsed > .wiki-list > .entry-item {
  animation: archiveClose 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;

  min-height: 24px;}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(1),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(1),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(1) {
  animation-delay: 180ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(2),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(2),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(2) {
  animation-delay: 120ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(3),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(3),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(3) {
  animation-delay: 60ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(4),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(4),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(4) {
  animation-delay: 0ms;
}

.entry-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em;
  padding-left: 12px;
  color: var(--entry-text);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;

  min-height: 24px;}

.entry-item::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: calc(50% - 3px);
}

.entry-item a {
  color: var(--entry-text);
  text-decoration: none;
  transition: color 260ms ease, opacity 260ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.meta,
.year {
  display: inline-block;
  color: var(--entry-meta);
  transition: color 260ms ease, opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

.detail-page {
  justify-items: start;
}

.detail-page .top-block,
.detail-page .intro-text,
.detail-page .detail-content,
.detail-page .detail-breadcrumb {
  width: 100%;
  max-width: 760px;
}

.detail-breadcrumb {
  margin: 0 0 8px;
  color: var(--entry-meta);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
}

.detail-breadcrumb a {
  color: var(--entry-text);
  text-decoration: none;
}

.detail-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-content {
  color: var(--entry-text);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
}

.detail-content h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.detail-content p {
  margin: 0 0 1em;
}

@keyframes archiveReveal {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes headerReveal {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes oneUpPop {
  0% {
    opacity: 0;
    transform: translate(0, 4px);
  }
  18% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  72% {
    opacity: 1;
    transform: translate(0, -70%);
  }
  100% {
    opacity: 0;
    transform: translate(0, -110%);
  }
}

body.is-ready .top-block {
  animation: headerReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-ready .intro-text {
  animation: headerReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

body.is-ready .theme-switch {
  animation: headerReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

body.is-ready .detail-breadcrumb {
  animation: headerReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

body.is-ready .detail-content {
  animation: headerReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) 140ms forwards;
}

.archive-node,
.leaf-group,
.node-children,
.wiki-list {
  will-change: opacity, transform, filter;
}

body.is-ready .archive-node {
  animation: archiveReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-ready .archive-node:nth-child(1) { animation-delay: 40ms; }
body.is-ready .archive-node:nth-child(2) { animation-delay: 100ms; }
body.is-ready .archive-node:nth-child(3) { animation-delay: 160ms; }
body.is-ready .archive-node:nth-child(4) { animation-delay: 220ms; }
body.is-ready .archive-node:nth-child(5) { animation-delay: 280ms; }

body.is-ready .archive-node .node-children {
  animation: archiveReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-ready .archive-node:nth-child(1) .node-children { animation-delay: 110ms; }
body.is-ready .archive-node:nth-child(2) .node-children { animation-delay: 170ms; }
body.is-ready .archive-node:nth-child(3) .node-children { animation-delay: 230ms; }
body.is-ready .archive-node:nth-child(4) .node-children { animation-delay: 290ms; }
body.is-ready .archive-node:nth-child(5) .node-children { animation-delay: 350ms; }

.entry-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  padding-left: 12px;
  color: var(--entry-text);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;

  min-height: 24px;}

.entry-item::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: calc(50% - 3px);
}

.entry-item a {
  color: var(--entry-text);
  text-decoration: none;
  transition: color 260ms ease, opacity 260ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.meta,
.year {
  display: inline-block;
  color: var(--entry-meta);
  transition: color 260ms ease, opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 640px) {
  .page-shell {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 56px;
  }

  .top-block,
  .archive-tree {
    max-width: 100%;
  }

  .entry-item {
    font-size: 1.02rem;
  
  min-height: 24px;}
}


.archive-node.is-open > .node-children > .leaf-group:nth-of-type(5),
.archive-node.is-open > .node-children > .entry-item:nth-child(5),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(5) {
  animation-delay: 280ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(6),
.archive-node.is-open > .node-children > .entry-item:nth-child(6),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(6) {
  animation-delay: 340ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(7),
.archive-node.is-open > .node-children > .entry-item:nth-child(7),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(7) {
  animation-delay: 400ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(8),
.archive-node.is-open > .node-children > .entry-item:nth-child(8),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(8) {
  animation-delay: 460ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(9),
.archive-node.is-open > .node-children > .entry-item:nth-child(9),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(9) {
  animation-delay: 520ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(10),
.archive-node.is-open > .node-children > .entry-item:nth-child(10),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(10) {
  animation-delay: 580ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(11),
.archive-node.is-open > .node-children > .entry-item:nth-child(11),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(11) {
  animation-delay: 640ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(12),
.archive-node.is-open > .node-children > .entry-item:nth-child(12),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(12) {
  animation-delay: 700ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(13),
.archive-node.is-open > .node-children > .entry-item:nth-child(13),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(13) {
  animation-delay: 760ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(14),
.archive-node.is-open > .node-children > .entry-item:nth-child(14),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(14) {
  animation-delay: 820ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(15),
.archive-node.is-open > .node-children > .entry-item:nth-child(15),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(15) {
  animation-delay: 880ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(16),
.archive-node.is-open > .node-children > .entry-item:nth-child(16),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(16) {
  animation-delay: 940ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(17),
.archive-node.is-open > .node-children > .entry-item:nth-child(17),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(17) {
  animation-delay: 1000ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(18),
.archive-node.is-open > .node-children > .entry-item:nth-child(18),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(18) {
  animation-delay: 1060ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(19),
.archive-node.is-open > .node-children > .entry-item:nth-child(19),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(19) {
  animation-delay: 1120ms;
}

.archive-node.is-open > .node-children > .leaf-group:nth-of-type(20),
.archive-node.is-open > .node-children > .entry-item:nth-child(20),
.leaf-group.is-open > .wiki-list > .entry-item:nth-child(20) {
  animation-delay: 1180ms;
}


.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(5),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(5),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(5) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(6),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(6),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(6) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(7),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(7),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(7) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(8),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(8),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(8) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(9),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(9),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(9) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(10),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(10),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(10) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(11),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(11),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(11) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(12),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(12),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(12) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(13),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(13),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(13) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(14),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(14),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(14) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(15),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(15),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(15) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(16),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(16),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(16) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(17),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(17),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(17) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(18),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(18),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(18) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(19),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(19),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(19) {
  animation-delay: 0ms;
}

.archive-node.is-collapsed > .node-children > .leaf-group:nth-of-type(20),
.archive-node.is-collapsed > .node-children > .entry-item:nth-child(20),
.leaf-group.is-collapsed > .wiki-list > .entry-item:nth-child(20) {
  animation-delay: 0ms;
}


.tag-ep { color: var(--tag-ep); }
.tag-single { color: var(--tag-single); }
.tag-album { color: var(--tag-album); }

@media (max-width: 600px) {
  .theme-switch {
    top: 15px;
    right: 15px;
  }
  .page-shell {
    padding-top: 12vh;
  }
  h1 { font-size: 1.8rem; }
  .intro-text { font-size: 0.9rem; }
  .section-label, .node-label { font-size: 0.95rem; }
  .entry-item, .music-intro { font-size: 0.9rem; }
  .detail-breadcrumb { font-size: 0.85rem; }
  .detail-content { font-size: 0.95rem; }
  .detail-content h2 { font-size: 1.3rem; }
}



















.wiki-list > .entry-item:last-child,
.node-children > .leaf-group:last-child {
  margin-bottom: 4px;
}
