@charset "UTF-8";
@import url(./basic.css);
:root {
  --transition-timing: cubic-bezier(0.71, 0.32, 0.2, 0.65);
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.7);
}

::selection {
  background-color: rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar {
  width: 0.5em;
  -webkit-transition: all 0.5s var(--transition-timing);
  transition: all 0.5s var(--transition-timing);
}

::-webkit-scrollbar-track {
  background-image: linear-gradient(to right, transparent 0.2em, black 0.2em, black 0.3em, transparent 0.3em);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 1em;
  outline: 0.15em solid black;
  outline-offset: -0.15em;
}

html {
  width: 100%;
  height: 100%;
  scrollbar-width: thin;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Knockout";
  font-weight: 400;
  color: white;
  letter-spacing: 0.1ex;
  background-color: rgba(0, 0, 0, 0.88);
  transition: all 0.5s var(--transition-timing);
}

small {
  font-size: smaller;
}

#app {
  width: 100%;
  height: 100%;
}
#app > .body {
  width: 100%;
  height: 100%;
}

main {
  height: 100%;
  transition: all 0.5s var(--transition-timing);
}

nav {
  position: fixed;
  inset: 0 50% auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, max-content));
  gap: 1rem 4rem;
  padding: 0.5rem 2rem;
  color: lightgray;
  background-color: crimson;
  border-radius: 0 0 5em 0;
  transition: all 0.5s var(--transition-timing), transform 0.5s 0.2s var(--transition-timing);
}
@media (max-width: 959px) {
  nav {
    transform: translate(-80%);
  }
}
@media (min-width: 960px) {
  nav {
    transform: translate(-90%);
  }
}
nav:hover {
  transform: none;
}
nav a {
  display: inline;
  font-family: "Knockout";
  font-weight: 200;
  letter-spacing: 0.1ex;
  color: #fff;
  white-space: nowrap;
  transition: all 0.5s var(--transition-timing);
}
nav dl {
  line-height: 1;
}
nav dl dt {
  font-family: "DS Forelle";
  font-size: 1.4rem;
}
nav dl a {
  font-size: 1.2rem;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
nav .to-index {
  align-self: center;
  font-size: xx-large;
}
nav .arrow {
  position: absolute;
}
@media (max-width: 959px) {
  nav .arrow {
    top: calc(50% - 1em);
    right: 0.5rem;
  }
}
@media (min-width: 960px) {
  nav .arrow {
    top: calc(50% - 0.5em);
    right: 2rem;
  }
}
nav .arrow::after {
  font-size: 1.5em;
  color: white;
  line-height: 0.5;
  content: "➡";
}

.btn-skin-shuffle {
  position: fixed;
  inset: 1.5rem 1.5rem auto auto;
  z-index: 101;
}
.btn-skin-shuffle button {
  padding: 1vmax;
  color: white;
  font-size: 1vmax;
  font-weight: 200;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transform: rotateZ(20deg);
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: inset 0 0 10em black, inset 0 0 10em white, 0 0 0.25rem 0.125rem white, 0 0 0 0.2rem white;
  -webkit-tap-highlight-color: transparent;
  box-sizing: content-box;
}
.btn-skin-shuffle button:hover {
  color: black;
  box-shadow: inset 0 0 0 0.2em black, inset 0 0 100em white, 0 0 1rem 0.5rem white, 0 0 6rem 3rem white;
}
.btn-skin-shuffle button.on {
  transform: rotateX(65deg) rotateY(0deg) rotateZ(500deg);
}
.btn-skin-shuffle button[disabled] {
  color: black;
  background-color: white;
}

.home {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  perspective: 80vmin;
  perspective-origin: left;
  transform-style: preserve-3d;
}
@media (max-width: 799px) {
  .home {
    grid-template-rows: repeat(12, 1fr);
  }
}
@media (min-width: 800px) {
  .home {
    grid-template-columns: repeat(12, 1fr);
  }
}
.home header {
  --basic-width: calc(40vmax + 40vmin);
  position: absolute;
  z-index: 1;
  width: calc(var(--basic-width) / 2);
  height: calc(var(--basic-width) / 2);
  border-radius: 50%;
}
.home header svg {
  width: var(--basic-width);
  height: var(--basic-width);
  margin: calc(var(--basic-width) / 4 * -1);
  text-shadow: -0.05vmin -0.05vmin crimson, 0 -0.05vmin crimson, 0.05vmin 0.05vmin crimson, 0.1vmin 0.1vmin crimson, 0.15vmin 0.15vmin crimson, 0.2vmin 0.2vmin crimson, 0.25vmin 0.25vmin crimson, 0.3vmin 0.3vmin crimson, 0.35vmin 0.35vmin crimson, 0.4vmin 0.4vmin crimson, 0.45vmin 0.45vmin crimson;
}
@media (max-width: 799px) {
  .home header svg {
    transform: rotateZ(270deg);
  }
}
@media (min-width: 800px) {
  .home header svg {
    animation: circle-eye 10s 5s infinite cubic-bezier(0.15, 0.02, 0, 1);
  }
}
.home header svg text {
  fill: white;
  font-size: 1.5em;
  font-weight: 100;
  text-transform: uppercase;
}
.home .not-bestof {
  --max-width: 20vmax;
  position: relative;
  z-index: 1;
  font-family: "Knockout Full Sumo";
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: currentColor 0.2vmin;
  text-shadow: 0.6em -0.3em 0 rgba(0, 0, 0, 0.1), 0.5em -0.5em 0 rgba(0, 0, 0, 0.2), -0.4em 0.1em 0 rgba(0, 0, 0, 0.8), 0.3em -0.1em 0 rgba(0, 0, 0, 0.7), 0.5em 0.4em 0 rgba(0, 0, 0, 0.6);
}
@media (max-width: 799px) {
  .home .not-bestof {
    grid-row: 1/span 3;
    align-self: end;
  }
}
@media (min-width: 800px) {
  .home .not-bestof {
    grid-column: 3/span 3;
    transform: rotateY(-70deg);
  }
}
@media (min-width: 800px) {
  .home .not-bestof {
    animation: slogan 10s infinite cubic-bezier(0.15, 0.02, 0, 1);
  }
}
.home .not-bestof p {
  display: flex;
  margin: 1.3vmin 0;
  justify-content: space-around;
}
.home .not-bestof span {
  display: inline-block;
  line-height: 0.75em;
}
.home .not-bestof span::first-letter {
  margin-right: 0.05em;
  font-style: italic;
}
.home .credit {
  position: relative;
  z-index: 1;
  display: flex;
  place-items: center;
  font-size: 2vmin;
  font-weight: 200;
}
@media (max-width: 799px) {
  .home .credit {
    grid-row: 9/span 3;
  }
}
@media (min-width: 800px) {
  .home .credit {
    grid-column: 10/span 2;
    justify-self: start;
  }
}
@media (max-width: 799px) {
  .home .credit {
    transform: rotateZ(90deg);
  }
}
.home .credit dt {
  display: flex;
  align-items: center;
  margin-bottom: 0.4em;
  font-size: 1.5vmin;
  font-family: "Knockout Full Sumo";
}
.home .credit dt::before {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  overflow: hidden;
  margin: 0 0.6em 0 0;
  line-height: 999em;
  background-color: crimson;
  border-radius: 50%;
  content: "";
}
.home .credit dd {
  margin: 0 0 1.5em 0.9em;
}
.home .credit dd .thank-list {
  display: flex;
  gap: 0.3em;
}
.home .credit dd .thank-list li {
  display: flex;
}
.home .credit dd .thank-list li:not(:last-child)::after {
  content: "/";
}
.home .credit dd .thank-list a {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-right: 0.3em;
  color: bisque;
  white-space: nowrap;
  transition: all 0.5s var(--transition-timing);
}
.home .credit dd .thank-list a:hover {
  color: crimson;
}
.home .credit dd .thank-list a::after {
  position: absolute;
  inset: auto 0 -0.5vmin;
  height: 0.5vmin;
  background-color: currentColor;
  content: "";
}
.home .credit .avatar {
  display: flex;
  gap: 0.5em;
  margin: 0.8em 0 2.3em 0.9em;
}
.home .credit .avatar a {
  display: inline-block;
  padding: 0.15em 0.5em 0.15em 2.3em;
  font-variant: petite-caps;
  color: white;
  letter-spacing: 0.06em;
  white-space: nowrap;
  background-color: #c4941d;
  border-radius: 1em;
  transition: all 0.5s var(--transition-timing);
}
@media (min-width: 800px) {
  .home .credit .avatar a {
    transform: rotateZ(-12deg);
  }
}
.home .credit .avatar a img {
  position: absolute;
  width: 2em;
  height: 2em;
  margin: -0.5em 0 0 -2.35em;
  border: 0.15em solid #c4941d;
  border-radius: 50%;
  transition: border-color 0.5s var(--transition-timing);
}
@media (min-width: 800px) {
  .home .credit .avatar a img {
    transform: rotateZ(12deg);
  }
}
.home .credit .avatar a:hover {
  background-color: crimson;
}
.home .credit .avatar a:hover img {
  border-color: crimson;
}
.home .credit .bandlab {
  position: relative;
  z-index: 0;
  display: inline-flex;
  gap: 0.1em;
  padding: 0.1em 0.4em;
  font-size: 0.65em;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: text-bottom;
  background-color: black;
  border: 0.2em solid crimson;
  border-radius: 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home .credit sup {
  position: absolute;
  right: -1em;
  font-size: 1.5em;
  line-height: 0.65em;
  font-weight: 200;
}
.home .elusive {
  position: relative;
  display: grid;
  width: 100vmin;
  height: 60vmin;
  -webkit-text-fill-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000vmin;
  mix-blend-mode: plus-lighter;
}
.home .elusive > p {
  align-self: center;
  position: relative;
  z-index: 1;
  -webkit-text-stroke: white 0.2vmin;
  font-size: 10vmin;
  letter-spacing: 10vmin;
  line-height: 1;
  text-indent: 10vmin;
  transform: rotateX(-21deg) rotateY(8deg);
}
.home .elusive::before {
  position: absolute;
  inset: -0.1em 0 0 -0.05em;
  z-index: 0;
  height: 0.7em;
  overflow: hidden;
  content: "rose";
  font-size: 66vmin;
  -webkit-text-stroke: white 0.02em;
  text-indent: -0.05em;
  background: radial-gradient(white, transparent 30%);
  transform: rotateX(-25deg) rotateY(-12deg);
  filter: blur(0.02em);
}
.home .elusive::after {
  position: absolute;
  inset: 0 -0.3em -0.4em 0.25em;
  z-index: 0;
  content: "dynamite";
  font-family: "DS Forelle";
  font-size: 60vmin;
  -webkit-text-stroke: white 0.02em;
  background: radial-gradient(white, transparent 30%) no-repeat 80% center/80% 80%;
  transform: rotateX(120deg) rotateY(360deg) rotateZ(356deg);
  filter: blur(0.016em);
}

.circle {
  --basic-width: calc(40vmax + 40vmin);
  position: fixed;
  z-index: 0;
  left: calc(50% - var(--basic-width) / 4);
  top: calc(50% - var(--basic-width) / 4);
  display: grid;
  place-items: center;
  width: calc(var(--basic-width) / 2);
  height: calc(var(--basic-width) / 2);
  background-color: bisque;
  border-radius: 50%;
  outline: 0.35vmin solid black;
  outline-offset: -1.5vmin;
  mix-blend-mode: exclusion;
}
.circle .center {
  display: grid;
  place-items: center;
  width: 21.4285714286%;
  height: 50%;
  background-color: black;
  border-radius: 50%;
  mix-blend-mode: invert;
}
@media (max-width: 799px) {
  .circle .center {
    transform: rotateZ(90deg);
  }
}
@media (min-width: 800px) {
  .circle .center {
    animation: circle-eye 5s infinite cubic-bezier(0.15, 0.02, 0, 1);
  }
}
.circle .center::after {
  width: calc(var(--basic-width) / 16);
  height: calc(var(--basic-width) / 36);
  border-radius: 50%;
  outline: 1vmin solid crimson;
  content: "";
}
@media (max-width: 799px) {
  .circle .center::after {
    animation: circle-eye 5s ease-in-out infinite;
  }
}
.circle::before, .circle::after {
  position: absolute;
  background-color: #c4941d;
  content: "";
  transition: all 0.2s var(--transition-timing);
  animation: circle-eye 10s 5s infinite cubic-bezier(0.15, 0.02, 0, 1);
}
@media (max-width: 799px) {
  .circle::before, .circle::after {
    width: 8vmin;
    height: 1.2vmin;
    top: 50%;
    margin-top: -0.6vmin;
  }
  .circle::before {
    left: -9.5vmin;
  }
  .circle::after {
    right: -9.5vmin;
  }
}
@media (min-width: 800px) {
  .circle::before, .circle::after {
    width: 1.2vmin;
    height: 8vmin;
    left: 50%;
    margin-left: -0.6vmin;
  }
  .circle::before {
    top: -9.5vmin;
  }
  .circle::after {
    bottom: -9.5vmin;
  }
}

@keyframes circle-eye {
  20% {
    transform: rotateY(86deg);
    text-shadow: none;
  }
  50% {
    transform: rotateY(-35deg);
    text-shadow: -0.05vmin -0.05vmin crimson, 0 -0.05vmin crimson, 0.05vmin 0.05vmin crimson, 0.1vmin 0.1vmin crimson, 0.15vmin 0.15vmin crimson, 0.2vmin 0.2vmin crimson, 0.25vmin 0.25vmin crimson, 0.3vmin 0.3vmin crimson, 0.35vmin 0.35vmin crimson, 0.4vmin 0.4vmin crimson, 0.45vmin 0.45vmin crimson;
    opacity: 0.5;
  }
  70% {
    transform: rotateY(86deg);
    text-shadow: none;
  }
}
@keyframes slogan {
  25% {
    transform: rotateY(-80deg);
  }
  75% {
    transform: rotateY(-60deg);
  }
}
article {
  height: 100%;
}

#colorthief-proxy {
  display: none;
}

.full-up {
  position: fixed;
  transform: rotateX(312deg) rotateY(316deg) rotateZ(302deg);
  top: 0;
  left: 0;
  z-index: 10;
}

.s404 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 2fr 4fr 4fr 2fr;
  perspective: 100vmin;
  mix-blend-mode: difference;
}
.s404 > div {
  grid-column: 1/5;
  grid-row: 2/4;
  font-size: 80vmin;
  font-weight: 200;
  color: yellow;
  text-align: center;
  background: radial-gradient(#222, transparent 70%);
  transform: rotate3d(0.5, 0.1, -0.2, 25deg);
  transform-origin: 0% 50%;
  filter: blur(0.12ex);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.not-found {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 2fr 4fr 4fr 2fr;
  perspective: 100vmin;
}
.not-found > div {
  z-index: 1;
  grid-column: 2/span 3;
  grid-row: 3;
  padding: 1ex 1ex 1.5ex;
  font-family: "Sabon RomanSC";
  font-size: 3vmin;
  color: white;
  letter-spacing: 2ex;
  text-indent: 2ex;
  white-space: nowrap;
  background-image: linear-gradient(-45deg, black 50%, transparent 50%);
  background-size: 1ex 100%;
  border-radius: 1.5ex;
  align-self: start;
  justify-self: center;
}

/** Player */
.player-global {
  position: fixed;
  inset: 102% 0 0;
  height: 100%;
  z-index: 101;
  display: grid;
  perspective: 57vmin;
  transition: all 0.5s var(--transition-timing);
}
.player-global .palette {
  position: absolute;
  inset: 0 0 0 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
.player-global .palette span {
  margin: 0 -2vmin;
  mix-blend-mode: luminosity;
  filter: blur(1vmin);
}
.player-global .ui {
  position: absolute;
  inset: 0.25rem 0.25rem auto 15vmin;
  z-index: 1;
  height: 1.5rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "controls info duration";
  align-items: center;
  padding: 0 0.5rem;
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 0.1vmax, rgba(0, 0, 0, 0.4) 0.1vmax, rgba(0, 0, 0, 0.4) 0.4vmax);
  transition: all 0.5s var(--transition-timing);
}
.player-global .ui .controls button {
  cursor: pointer;
}
.player-global .cover {
  position: absolute;
  inset: -8vmin auto auto -15vmin;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 10vmin;
  height: 10vmin;
  background: url(../assets/7inch.svg) center center/contain;
  opacity: 0;
  transition: all 0.5s var(--transition-timing), inset 0.5s var(--transition-timing);
  transform-origin: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.player-global .cover img {
  outline: 0.1vmin solid bisque;
  outline-offset: -0.2vmin;
}
.player-global .cover.hide {
  opacity: 0;
  transform: rotateZ(-2.5rad);
  left: -15vmin;
}
.player-global .cover.show {
  opacity: 1;
  transform: rotateZ(2.5rad);
  left: 2.5vmin;
}
.player-global .cover.loading {
  animation: blink 1s alternate infinite;
}
.player-global .cover img {
  display: block;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  filter: brightness(1.1) contrast(1.2) !important;
}
.player-global .cover img.spin {
  animation: record-spin 4s linear infinite;
}
.player-global .cover img.paused {
  animation-play-state: paused;
}
.player-global .progress {
  --bar-height: 0.25rem;
  position: absolute;
  inset: calc(var(--bar-height) * -4) 0 auto;
  height: 0;
}
.player-global .progress::after {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
}
.player-global .progress .bar {
  position: absolute;
  z-index: 1;
  inset: auto auto 0 0;
  height: var(--bar-height);
  background-color: crimson;
}
.player-global .progress.playing {
  height: calc(var(--bar-height) * 4);
}
.player-global .progress.playing::after {
  transition: height 0.3s ease;
}
.player-global .progress.playing .bar {
  transition: width 1s linear, height 0.3s ease;
}
.player-global .progress.playing:hover::after,
.player-global .progress.playing:hover .bar {
  height: 100%;
}
.player-global .info {
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 80%;
  text-align: center;
  cursor: pointer;
}
.player-global .info span {
  line-height: 1.5;
}
@media (max-width: 959px) {
  .player-global .info span {
    display: none;
  }
}
@media (min-width: 960px) {
  .player-global .info span {
    display: block;
  }
}
.player-global .info .artist-en {
  text-transform: uppercase;
}
.player-global .info .title-en {
  font-family: "Sabon";
  font-style: italic;
  text-transform: lowercase;
}
.player-global .duration {
  text-align: right;
}
.player-global .playlist {
  position: absolute;
  inset: auto 1rem 2rem auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.player-global .playlist ul {
  min-width: 20em;
  padding: 3px;
  outline: 1px dashed white;
  outline-offset: -3px;
}
.player-global .playlist li:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.player-global .playlist li button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.2em 0.5em;
  cursor: pointer;
}
.player-global .lyrics {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  display: grid;
  overflow: auto;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s 0.5s var(--transition-timing);
}
@media (max-width: 959px) {
  .player-global .lyrics {
    padding: 10vw 0;
    grid-template-rows: auto auto;
    gap: 10vw;
    text-align: center;
  }
}
@media (min-width: 960px) {
  .player-global .lyrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
}
.player-global .lyrics blockquote {
  white-space: pre-line;
}
.player-global .lyrics blockquote.jp {
  font-family: "LanobePop";
}
@media (min-width: 960px) {
  .player-global .lyrics blockquote.jp {
    margin-top: 15%;
    justify-self: end;
    text-align: right;
  }
}
.player-global .lyrics blockquote.en {
  font-family: "Sabon";
  font-style: italic;
}
@media (min-width: 960px) {
  .player-global .lyrics blockquote.en {
    margin-top: -15%;
  }
}
.player-global.on {
  inset: calc(100% - 2rem) 0 0;
}
.player-global.full-screen {
  inset: 0 0 0;
  place-items: start;
}
.player-global.full-screen .palette span {
  margin: -2vmin;
}
.player-global.full-screen .ui {
  left: 0.25rem;
}
@media (max-width: 499px) {
  .player-global.full-screen .cover {
    inset: 20vmin 50% auto;
    margin-left: -20vmin;
    width: 40vmin;
    height: 40vmin;
  }
}
@media (min-width: 500px) {
  .player-global.full-screen .cover {
    inset: 4vmin auto auto 10vmin;
    transform: rotateX(28deg) rotateY(35deg);
    width: 25vmin;
    height: 25vmin;
  }
}
.player-global.full-screen .cover img {
  outline: 0.2vmin solid bisque;
  outline-offset: -0.4vmin;
}
.player-global.full-screen .lyrics {
  opacity: 1;
}
@media (max-width: 499px) {
  .player-global.full-screen .lyrics {
    padding-top: 70vmin;
  }
}
.player-global.full-screen .progress {
  top: calc(var(--bar-height) * 5);
}

@keyframes blink {
  to {
    opacity: 0.35;
  }
}
@keyframes record-spin {
  to {
    transform: rotateZ(360deg);
  }
}
/** Comp styles */
.covers-grid {
  display: grid;
  margin: auto;
  transition: all 0.5s var(--transition-timing);
}
@media (max-width: 959px) {
  .covers-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (min-width: 960px) {
  .covers-grid {
    width: 100vmin;
    height: 100vmin;
    grid-template-rows: repeat(4, 25%);
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  }
}
.covers-grid li {
  display: grid;
  place-items: center;
  perspective-origin: center;
  backface-visibility: hidden;
  transition: all 0.5s var(--transition-timing);
}
.covers-grid li figure {
  display: grid;
  place-items: center;
  margin: 0 auto;
  background-color: black;
  transition: all 0.5s ease-in-out;
}
.covers-grid li figure img {
  width: 100%;
  height: 100%;
  perspective-origin: center;
  backface-visibility: hidden;
  transition: all 0.5s var(--transition-timing);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.covers-bars {
  position: fixed;
  inset: 2rem;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(10, calc((100vmin - 4rem) / 10));
}
.covers-bars li {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.covers-bars li:nth-child(4n-3), .covers-bars li:nth-child(4n-4) {
  color: black;
  -webkit-text-stroke-color: white;
}
.covers-bars li:nth-child(4n-5), .covers-bars li:nth-child(4n-6) {
  color: white;
  -webkit-text-stroke-color: white;
}
.covers-bars li .artist-en {
  position: absolute;
  inset: 0.5rem 2rem;
  display: flex;
  justify-content: space-around;
  font-family: "DS Forelle";
  font-size: 5vw;
  line-height: 1;
  white-space: nowrap;
  background: black url(about:blank) no-repeat center center/110% auto;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  cursor: pointer;
  transition: all 0.5s var(--transition-timing);
}
.covers-bars li .artist-en:hover {
  justify-content: center;
  background-size: 120% auto;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-stroke-color: unset !important;
  -webkit-text-stroke-width: thick;
  transform: rotateX(180deg);
}

/** Skins */
.skin-scattered {
  height: 100%;
  overflow: hidden;
}
.skin-scattered .frame {
  --border-thickness: 1.5vmin;
  position: fixed;
  inset: calc((100vh - 80vmin) / 2) calc((100vw - 80vmin) / 2);
  width: 80vmin;
  height: 80vmin;
  box-shadow: inset 0 0 0 var(--border-thickness) currentColor;
  outline: calc(var(--border-thickness) * 0.2) solid currentColor;
  outline-offset: calc(var(--border-thickness) * -1.5);
  transition: background-color 1s var(--transition-timing);
  pointer-events: none;
}
@media (max-width: 959px) {
  .skin-scattered .frame {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  .skin-scattered .frame {
    z-index: 0;
  }
}
.skin-scattered header {
  position: absolute;
  z-index: 3;
  --border-thickness: 1.5vmin;
  --font-size: 3vmax;
  line-height: var(--font-size);
  pointer-events: none;
  transition: all 0.5s var(--transition-timing);
}
.skin-scattered header h1,
.skin-scattered header h2 {
  position: absolute;
  white-space: nowrap;
  transition: all 0.2s var(--transition-timing);
}
@media (max-width: 959px) {
  .skin-scattered header h1,
  .skin-scattered header h2 {
    z-index: 2;
    top: calc(50vh - var(--font-size) / 2);
  }
}
@media (min-width: 960px) {
  .skin-scattered header h1,
  .skin-scattered header h2 {
    top: calc((100vh - 80vmin) / 2 + var(--border-thickness) * 4);
  }
}
.skin-scattered header h1 {
  width: 40vmin;
  font-size: var(--font-size);
  font-weight: 100;
  text-transform: lowercase;
  letter-spacing: 0.2em;
  text-align: right;
  color: black;
  text-shadow: -0.05vmin -0.05vmin white, 0 -0.05vmin white, 0.05vmin 0.05vmin white, 0.1vmin 0.1vmin white, 0.15vmin 0.15vmin white, 0.2vmin 0.2vmin white, 0.25vmin 0.25vmin white, 0.3vmin 0.3vmin white, 0.35vmin 0.35vmin white, 0.4vmin 0.4vmin white, 0.45vmin 0.45vmin white;
}
@media (max-width: 959px) {
  .skin-scattered header h1 {
    left: calc((100vw - 80vmin) / 2 - 5vmin - var(--border-thickness) / 2);
  }
}
@media (min-width: 960px) {
  .skin-scattered header h1 {
    left: calc((100vw - 80vmin) / 2 - 40vmin - var(--border-thickness));
  }
}
.skin-scattered header h2 {
  display: flex;
  align-items: center;
  gap: 0.3em;
  color: white;
  font-family: "DS Forelle";
  letter-spacing: 0.05em;
  text-shadow: 0.02em 0.02em black;
}
@media (max-width: 959px) {
  .skin-scattered header h2 {
    left: calc(50vw + 5vmin + var(--border-thickness) / 2);
    font-size: var(--font-size);
  }
}
@media (min-width: 960px) {
  .skin-scattered header h2 {
    left: calc((100vw - 80vmin) / 2 + var(--border-thickness) * 2.5);
    margin-top: 0.15em;
    font-size: calc(var(--font-size) * 0.8);
  }
}
.skin-scattered header .volume {
  width: 2.5em;
  height: 1.5em;
  font-size: 0.5em;
  font-family: "Knockout Full Sumo";
  color: white;
  line-height: 1.5em;
  text-align: center;
  background-color: crimson;
  border-radius: 50%;
}
.skin-scattered .covers-grid {
  position: relative;
  z-index: 1;
  perspective: 1000vmin;
  perspective-origin: bottom;
  transform-style: preserve-3d;
}
@media (min-width: 960px) {
  .skin-scattered .covers-grid {
    transform: rotateX(60deg) rotateY(0deg) rotateZ(40deg);
  }
}
.skin-scattered .covers-grid.tracklist-on {
  transform-style: flat;
}
@media (min-width: 960px) {
  .skin-scattered .covers-grid.tracklist-on {
    width: 90vmin;
    height: 90vmin;
    perspective: 100vmin;
    transform: translateX(calc((100vw - 100vh) / 3)) translateY(5vmin);
  }
}
.skin-scattered .covers-grid li figure {
  will-change: transform;
}
.skin-scattered .covers-grid li.active {
  transform: scale(1.3) !important;
}
.skin-scattered .covers-grid li.active figure {
  box-shadow: 0 0 1rem 0.5rem white, 0 0 6rem 3rem white;
}
.skin-scattered .covers-grid li.active figure img {
  filter: brightness(1.1) contrast(1.2) !important;
}
.skin-scattered .tracks {
  position: fixed;
  inset: 0 auto 0 -100vmin;
  z-index: 2;
  padding: 26vh 3vmin 6vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.99) 50%, rgba(0, 0, 0, 0.4));
  transition: all 0.5s var(--transition-timing);
}
.skin-scattered .tracks:hover ::-webkit-scrollbar-thumb {
  background-color: white;
}
.skin-scattered .tracks > ul {
  padding: 2% 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  display: grid;
  row-gap: 5vh;
}
@media (min-width: 500px) {
  .skin-scattered .tracks > ul {
    direction: rtl;
    height: 100%;
  }
}
.skin-scattered .tracks li {
  grid-template-columns: 9em max-content max-content;
  list-style-type: decimal;
  list-style-position: inside;
  display: grid;
  row-gap: 1vmin;
  cursor: pointer;
  transition: all 0.2s var(--transition-timing);
}
@media (max-width: 499px) {
  .skin-scattered .tracks li {
    font-size: 5vmin;
  }
}
@media (min-width: 500px) {
  .skin-scattered .tracks li {
    direction: ltr;
    font-size: 3vmin;
  }
}
.skin-scattered .tracks li .track-no {
  position: absolute;
  inset: -0.15em -0.35em auto auto;
  border-radius: 50%;
  width: 0.4em;
  text-shadow: 0.02em 0.02em black;
  height: 0.4em;
  text-align: center;
  line-height: 0.4em;
  filter: hue-rotate(120deg) brightness(1.1);
}
.skin-scattered .tracks li .track-no i {
  position: absolute;
  inset: auto 0 40%;
  font-family: "Knockout";
  font-size: 40%;
  font-weight: 200;
  color: white;
  text-shadow: 0.1vmin 0.1vmin black, 0.15vmin 0.15vmin black, 0.2vmin 0.2vmin black;
}
.skin-scattered .tracks li .artist-en {
  grid-area: 1/1/3/2;
  align-self: baseline;
  justify-self: self-end;
  position: relative;
  z-index: 0;
  display: flex;
  margin-right: 0.5em;
  align-items: baseline;
  -moz-column-gap: 0.1em;
       column-gap: 0.1em;
  font-family: "Lovadelic";
  font-size: 2em;
  white-space: nowrap;
  mix-blend-mode: lighten;
}
.skin-scattered .tracks li .artist-en .given {
  letter-spacing: 0.06em;
  -webkit-text-stroke: 0.02em currentColor;
  -webkit-text-fill-color: transparent;
  line-height: 0.6;
}
.skin-scattered .tracks li .artist-en .surname {
  font-family: "Knockout";
  font-size: 0.5em;
  font-weight: 200;
  letter-spacing: 0.1em;
  font-variant: all-small-caps;
  text-indent: 0.1em;
  -webkit-text-decoration: 0.2em solid overline;
          text-decoration: 0.2em solid overline;
  line-height: 1.4;
}
.skin-scattered .tracks li .title-en {
  position: relative;
  z-index: 1;
  max-width: 24em;
  font-family: "Sabon";
  font-size: 0.6em;
  font-style: italic;
  font-weight: 800;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.35em;
  word-spacing: 0.3em;
  text-shadow: 0.1vmin 0.1vmin black;
}
@media (max-width: 499px) {
  .skin-scattered .tracks li .title-en {
    grid-area: 3/span 4;
    justify-self: center;
    text-align: right;
  }
}
@media (min-width: 500px) {
  .skin-scattered .tracks li .title-en {
    grid-area: 1/span 2;
  }
}
.skin-scattered .tracks li .title {
  white-space: nowrap;
}
@media (max-width: 499px) {
  .skin-scattered .tracks li .title {
    grid-area: 4/2;
  }
}
@media (min-width: 500px) {
  .skin-scattered .tracks li .title {
    grid-area: 2/2;
  }
}
.skin-scattered .tracks li .title figure {
  height: 1em;
}
.skin-scattered .tracks li .title figure img {
  display: block;
  height: 100%;
  font-size: 0.5em;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  filter: brightness(100);
  transition: all 0.2s var(--transition-timing);
}
.skin-scattered .tracks li .artist {
  margin: 0 1em;
  font-family: "LanobePop";
  font-size: 0.5em;
  font-weight: bold;
}
@media (max-width: 499px) {
  .skin-scattered .tracks li .artist {
    grid-area: 4/1;
    text-align: right;
  }
}
@media (min-width: 500px) {
  .skin-scattered .tracks li .artist {
    grid-area: 2/3;
  }
}
.skin-scattered .tracks li .extra {
  display: flex;
  font-size: 0.55em;
}
@media (max-width: 499px) {
  .skin-scattered .tracks li .extra {
    grid-area: 5/span 4;
    justify-content: center;
  }
}
@media (min-width: 500px) {
  .skin-scattered .tracks li .extra {
    grid-area: 3/span 3;
    justify-content: flex-end;
  }
}
.skin-scattered .tracks li .extra .cat {
  font-family: "Sabon RomanSC";
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.6);
}
.skin-scattered .tracks li .extra .year {
  font-family: "Sabon RomanSC";
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.6);
}
.skin-scattered .tracks li .extra .credit {
  display: flex;
  align-items: center;
  margin: 0 0 0 1em;
  font-weight: 200;
}
.skin-scattered .tracks li .extra .middot {
  align-self: center;
  width: 0.44em;
  height: 0.44em;
  overflow: hidden;
  margin: 0 0.5em;
  line-height: 999em;
  background-color: currentColor;
  border-radius: 50%;
}
.skin-scattered .tracks li:hover {
  position: relative;
}
.skin-scattered .tracks li:hover .artist-en::before {
  opacity: 1;
}
.skin-scattered .tracks li:hover .artist-en::after {
  opacity: 1;
}
.skin-scattered .tracks li:hover .title figure img {
  filter: brightness(1.2) saturate(1.5);
  transform: scaleX(1.3) scaleY(1.1);
}
.skin-scattered .covers-grid {
  perspective: 10000vmin;
  perspective-origin: bottom;
  transform-style: preserve-3d;
}
@media (min-width: 960px) {
  .skin-scattered .covers-grid {
    transform: rotateX(60deg) rotateY(0deg) rotateZ(40deg);
  }
}
.skin-scattered .covers-grid li {
  mix-blend-mode: darken;
}
.skin-scattered .covers-grid li figure {
  will-change: transform;
}
.skin-scattered .covers-grid li.active {
  z-index: 1;
  transform: scale(1.4) !important;
}
.skin-scattered .covers-grid li.active figure {
  box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.9), 0 0 0 1em rgba(0, 0, 0, 0.8), 0 0 0 1.5em rgba(255, 255, 255, 0.8), 0 0 0 2em rgba(0, 0, 0, 0.7), 0 0 0 2.5em rgba(255, 255, 255, 0.7), 0 0 0 3em rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}
.skin-scattered .covers-grid li.active figure img {
  border-radius: 50%;
  filter: brightness(1.1) contrast(1.2) !important;
}
@media (max-width: 959px) {
  .skin-scattered.tracklist-on header h1,
  .skin-scattered.tracklist-on header h2 {
    top: 15vh;
    opacity: 0.5;
    transition-duration: 0.5s;
  }
}
@media (min-width: 960px) {
  .skin-scattered.tracklist-on header h1,
  .skin-scattered.tracklist-on header h2 {
    opacity: 0.8;
  }
}
@media (max-width: 499px) {
  .skin-scattered.tracklist-on .tracks {
    inset: 0;
  }
}
@media (min-width: 500px) {
  .skin-scattered.tracklist-on .tracks {
    inset: 0 auto 0 0;
  }
}
.skin-scattered.tracklist-on .covers-grid {
  perspective: 100vmin;
  transform-style: flat;
}
@media (min-width: 960px) and (max-width: 1439px) {
  .skin-scattered.tracklist-on .covers-grid {
    width: 90vmin;
    height: 90vmin;
    transform: translateX(calc((100vw - 100vh) / 2)) translateY(5vmin);
  }
}
@media (min-width: 1440px) {
  .skin-scattered.tracklist-on .covers-grid {
    width: 90vmin;
    height: 90vmin;
    transform: translateX(calc((100vw - 100vh) / 3)) translateY(5vmin);
  }
}
.skin-scattered.tracklist-on .covers-grid li.active {
  mix-blend-mode: unset;
}

.skin-moondots {
  display: grid;
  place-items: center;
}
@media (min-width: 960px) {
  .skin-moondots {
    overflow: hidden;
  }
}
.skin-moondots .cover {
  width: 100%;
}
.skin-moondots .covers-grid {
  --item-size: calc((100vmin - 4rem - 1.5rem) / 4);
  margin: 2rem auto;
  grid-template-rows: repeat(4, var(--item-size));
  grid-template-columns: repeat(auto-fit, minmax(var(--item-size), 1fr));
  gap: 0.5rem;
}
.skin-moondots .covers-grid li {
  grid-area: span 1/span 1;
}
.skin-moondots .covers-grid li figure {
  height: var(--item-size);
  -webkit-clip-path: polygon(50% 0, 85% 50%, 50% 100%, 15% 50%);
          clip-path: polygon(50% 0, 85% 50%, 50% 100%, 15% 50%);
  transition: all 0.5s var(--transition-timing);
}
.skin-moondots .covers-grid li figure img {
  width: auto;
  height: var(--item-size);
  border: 0 solid white;
  cursor: pointer;
  filter: grayscale(1);
}
.skin-moondots .covers-grid li:hover figure {
  -webkit-clip-path: polygon(50% 0, 35% 50%, 50% 100%, 65% 50%);
          clip-path: polygon(50% 0, 35% 50%, 50% 100%, 65% 50%);
}
.skin-moondots .covers-grid li:hover figure img {
  animation: cover-filter 1s 0.5s forwards var(--transition-timing);
}
.skin-moondots .covers-grid li.active figure {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.skin-moondots .covers-grid li.active figure img {
  border-width: 0.5rem;
  filter: brightness(1.1) contrast(1.2);
}
@keyframes cover-filter {
  to {
    filter: brightness(1.1) contrast(1.2);
  }
}
.skin-moondots .song-playing {
  --dot-size: 6rem;
  position: fixed;
  inset: calc(50vh - var(--dot-size) * 2.5) 0;
  display: grid;
  place-content: center;
  overflow: hidden;
  pointer-events: none;
}
.skin-moondots .song-playing .title {
  display: flex;
  justify-content: center;
  margin: 0 -100%;
  font-family: "DS Forelle";
  font-size: 20vmin;
  letter-spacing: -0.02em;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: repeating-radial-gradient(currentColor, currentColor 50%, transparent 50.9%, transparent 100%), repeating-radial-gradient(white, white 20%, transparent 20.9%, transparent 100%);
  background-size: 1rem 1rem;
  background-position: 0 0, 0.5rem 0.5rem;
  filter: contrast(1.1) hue-rotate(270deg);
}
.skin-moondots .song-playing .mask {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: repeating-radial-gradient(currentColor, currentColor 40%, transparent 40.9%, transparent 100%);
  background-size: var(--dot-size) var(--dot-size);
  background-position: center center;
  mix-blend-mode: color-dodge;
  opacity: 0.4;
}