html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  background-color: #0A0A0F;
}

a {
  color: inherit;
}

.hidden {
  display: none;
}

*, .unselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main {
  display: flex;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
main nav {
  margin: 16px 0;
  display: flex;
  filter: blur(0);
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: filter 333ms ease-in;
  border-radius: 12px;
  background-color: #0A0A0F;
  overflow: hidden;
}
main nav.inactive {
  pointer-events: none;
}
main nav .hex {
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #8888AA;
  cursor: pointer;
  stroke: #2e2e4a;
  fill: #1A1A2A;
  transition: fill 500ms;
}
main nav .hex:hover {
  fill: #24243a;
}
main nav .hex.broken {
  color: white;
  opacity: 0.2;
}
main nav .hex > svg > polygon {
  position: absolute;
}
main nav .hex > span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  text-align: center;
  position: absolute;
  pointer-events: none;
}

article {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
article .player-wrapper {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4em;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 32px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(4px) brightness(200%);
}
article .player-wrapper .prev, article .player-wrapper .next, article .player-wrapper .close {
  width: 24px;
  height: 24px;
  bottom: -32px;
  border-radius: 24px;
  text-align: center;
  line-height: 24px;
  color: black;
  background-color: white;
  position: absolute;
  cursor: pointer;
}
article .player-wrapper .prev:hover, article .player-wrapper .next:hover, article .player-wrapper .close:hover {
  color: white;
  background-color: black;
}
article .player-wrapper .prev {
  left: 0;
}
article .player-wrapper .next {
  right: 0;
}
article .player-wrapper .close {
  transform: translate(-12px, 0);
  left: 50%;
}
article .player-wrapper .title, article .player-wrapper .description {
  position: absolute;
}
article .player-wrapper .title {
  color: rgba(255, 255, 255, 0.6);
  top: 1.5em;
}
article .player-wrapper .description {
  color: rgba(255, 255, 255, 0.3);
  bottom: 1.5em;
}
article .player-wrapper .description.broken {
  color: orange;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 6px;
  background-color: #1A1A2A;
}

.ruffle {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 16px;
  left: 8px;
  color: rgba(255, 255, 255, 0.6);
}
.ruffle .powered {
  font-size: 10px;
}
.ruffle a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.ruffle .status {
  margin: 8px 0 0 0;
  color: orange;
}
.ruffle img {
  margin: 2px 0 0 0;
  transform-origin: top left;
  width: 80px;
}

h1 {
  left: 0;
  top: 464px;
  padding: 4px 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transform: rotate(-90deg);
  transform-origin: left top;
  pointer-events: none;
  position: absolute;
  color: #8888AA;
  background-color: #1A1A2A;
  margin: 0 0 8px 0;
  font-size: 18px;
}

/*# sourceMappingURL=style.css.map */
