.icon-link {
  white-space: nowrap;
}
.icon-link > :last-child {
  white-space: normal;
}
.icon-link > :first-child {
  margin-right: 0.3125em;
}

.img-link,
.icon-link {
  cursor: text;
}
a .img-link,
a .icon-link {
  cursor: pointer;
}

img.img-link {
  height: 1em;
  vertical-align: -0.125em;
}

img.img-cycle {
  width: 1em;
  object-fit: contain;
}

.mc-tooltip {
  position: fixed;
  z-index: 50;
  pointer-events: none;
  font-family: "Minecraft";
  font-size: 1rem;
  white-space: nowrap;
  text-align: left;
  color: #ffffff;
  text-shadow: 0.125em 0.125em 0 #3f3f3f;
  padding: 0 0.25em 0.25em;
  border: 0.125em solid;
  border-image: linear-gradient(to bottom, rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
  background-color: rgba(16, 0, 16, 0.94);
  box-shadow: 0 -0.125em 0 rgba(16, 0, 16, 0.94), 0 0.125em 0 rgba(16, 0, 16, 0.94), -0.125em 0 0 rgba(16, 0, 16, 0.94), 0.125em 0 0 rgba(16, 0, 16, 0.94);
}
.mc-tooltip::before {
  content: "";
  display: block;
  margin-top: -0.125em;
}
.mc-tooltip[hidden] {
  display: none;
}
.mc-tooltip .mc-tooltip-note {
  display: block;
  margin-top: 1lh;
  color: #aaaaaa;
  text-shadow: 0.125em 0.125em 0 #2a2a2a;
}

.copy-text {
  display: inline;
  padding: 0;
  font: inherit;
  text-align: inherit;
  text-decoration: underline 0.125em;
  text-underline-offset: 0.125em;
  background: none;
  border: 0;
  cursor: pointer;
}
.copy-text:hover, .copy-text:focus-visible {
  color: #ffffa0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #1f1f1f;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.pixelated {
  image-rendering: pixelated;
}

.nav-bar {
  top: 0;
  bottom: 0;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  width: 20rem;
  margin-right: 3em;
  background-color: #2d2d2d;
  display: flex;
  flex-direction: column;
}
.nav-bar .nav-links {
  flex: 1;
}
.nav-bar .nav-links h2 {
  color: #ff5555;
  text-shadow: 1px 1px 0 #3f1515;
}
.nav-bar .nav-links p {
  padding-left: 1.7em;
}
.nav-bar .nav-links a {
  padding-left: 2.5em;
  line-height: 1.5em;
  display: block;
  color: #b85c38;
}
.nav-bar .nav-langs {
  padding: 1em;
}
.nav-bar .nav-langs a.language-link {
  text-decoration: none;
}

.nav-toggle,
.mobile-bar,
.nav-backdrop {
  display: none;
}

@media only screen and (max-width: 1080px) {
  html {
    scroll-padding-top: 3.5rem;
  }
  html:has(.mobile-bar-hidden) {
    scroll-padding-top: 0;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-bar {
    top: 0;
    left: 0;
    right: 0;
    height: 3.5rem;
    position: fixed;
    box-sizing: border-box;
    padding: 0 1em;
    background-color: #2d2d2d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.75em;
    transition: transform 0.25s ease;
  }
  .mobile-bar .mobile-bar-title {
    color: #b85c38;
    text-decoration: none;
  }
  .mobile-bar-hidden .mobile-bar {
    transform: translateY(calc(-100% - 8px));
  }
  .mobile-bar-hidden .nav-toggle:focus-visible ~ .mobile-bar {
    transform: none;
  }
  .nav-toggle-button {
    box-sizing: border-box;
    width: 2.5em;
    height: 2.5em;
    padding: 0.5em;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .nav-toggle-button span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background-color: #b85c38;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle:focus-visible ~ .mobile-bar .nav-toggle-button {
    outline: 2px solid #00aaaa;
  }
  .nav-toggle:checked ~ .mobile-bar .nav-toggle-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle:checked ~ .mobile-bar .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .mobile-bar .nav-toggle-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-bar {
    top: 3.5rem;
    width: 20rem;
    max-width: 80vw;
    margin-right: 0;
    z-index: 25;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .nav-toggle:checked ~ .nav-bar {
    transform: none;
  }
  .nav-backdrop {
    top: 3.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: fixed;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .nav-toggle:checked ~ .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-bar,
  .nav-bar,
  .nav-backdrop,
  .nav-toggle-button span {
    transition: none;
  }
}
.content {
  padding-left: 23em;
  padding-right: 5em;
  text-align: justify;
  text-justify: inter-word;
}
.content h2 {
  color: #00aaaa;
  text-shadow: 1px 1px 0 #005d5d;
  margin-top: 2em;
  padding-bottom: 1em;
  border-bottom: 5px solid #005d5d;
}
.content h1 {
  padding-bottom: 1em;
  border-bottom: 5px solid #005d5d;
}
.content h3 {
  color: #b85c38;
  text-shadow: 1px 1px 0 #6b3520;
  padding-left: 30px;
  margin-top: 2em;
}
.content p {
  padding-left: 30px;
}

@media only screen and (max-width: 1080px) {
  .content {
    padding-top: 3.5rem;
    padding-left: 5em;
  }
}
@media only screen and (max-width: 660px) {
  .content {
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 0.8em;
  }
  ul, ol, li {
    text-align: left;
  }
  h2, h3, p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.server-logo {
  padding: 1em 0em;
  display: block;
  margin: 0 auto;
  height: 10em;
}

.discord {
  color: #5662f6;
  text-shadow: 1px 1px 0 #3b43a9;
}

div.welcome {
  font-size: 1.5em;
  margin-top: 1em;
  margin-bottom: 3em;
}
div.welcome p {
  padding: 0;
}

@media only screen and (max-width: 660px) {
  div.welcome {
    font-size: 1.2em;
    text-align: center;
  }
  .server-logo {
    height: 20vw;
  }
}
a.href-link {
  text-decoration: none;
}

.side-note {
  font-size: 0.8em;
}

.game-action-key {
  position: relative;
  z-index: 0;
  margin: 0 0.125em;
  padding: 0 0.25em 0 0.375em;
  white-space: nowrap;
}
.game-action-key::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0.25em;
  bottom: -0.125em;
  background-color: #383838;
  box-shadow: inset 0.125em 0.125em 0 #4c4c4c, inset -0.125em -0.125em 0 #262626, 0 -0.125em 0 #1e1e1e, 0 0.125em 0 #1e1e1e, -0.125em 0 0 #1e1e1e, 0.125em 0 0 #1e1e1e;
}

.mc-button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 20em;
  margin: 0 auto;
  padding: 0.25em 0.25em 0.5em 0.375em;
  text-align: center;
  text-decoration: none;
  background-color: #383838;
  box-shadow: inset 0.125em 0.125em 0 #4c4c4c, inset -0.125em -0.125em 0 #262626, 0 -0.125em 0 #1e1e1e, 0 0.125em 0 #1e1e1e, -0.125em 0 0 #1e1e1e, 0.125em 0 0 #1e1e1e;
}
.mc-button:hover, .mc-button:focus-visible {
  background-color: #383838;
  box-shadow: inset 0.125em 0.125em 0 #4c4c4c, inset -0.125em -0.125em 0 #262626, 0 -0.125em 0 #ffffff, 0 0.125em 0 #ffffff, -0.125em 0 0 #ffffff, 0.125em 0 0 #ffffff;
  outline: none;
  color: #ffffa0;
  text-shadow: 1px 1px 0 #3f3f28;
}

.content:has(.not-found) {
  text-align: center;
}
.content:has(.not-found) h2 {
  color: #ff5555;
  text-shadow: 1px 1px 0 #3f1515;
}

.not-found .not-found-path:empty {
  display: none;
}
.not-found .mc-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-top: 2em;
  padding: 0 30px;
}

.mc-link {
  color: #b9b9b9;
  text-shadow: 1px 1px 0 #2e2e2e;
  text-decoration: underline 0.125em;
  text-underline-offset: 0.125em;
}
.mc-link img {
  width: 1.125em;
  height: 1.125em;
  margin-right: 0.125em;
  vertical-align: -0.125em;
}

.nav-links a[aria-current] {
  color: #ffaa00;
  text-shadow: 1px 1px 0 #2a2a00;
}
.nav-links.searching .nav-pages {
  display: none;
}

.nav-search {
  padding: 0 1em 0.75em 1.7em;
}
.nav-search .search-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.3em 0.5em;
  font: inherit;
  color: #e0e0e0;
  text-shadow: 1px 1px 0 #383838;
  background-color: #000000;
  border: 2px solid #a0a0a0;
  border-radius: 0;
  outline: none;
}
.nav-search .search-input:focus {
  border-color: #ffffff;
}
.nav-search .search-input::placeholder {
  color: #707070;
  text-shadow: none;
}

.search-results {
  margin: 0 -1em 0 -1.7em;
  padding-bottom: 1em;
}
.nav-links .search-results a {
  display: block;
  padding: 0.4em 1em 0.4em 1.7em;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}
.nav-links .search-results a:hover, .nav-links .search-results a.active {
  background-color: rgba(255, 255, 255, 0.08);
}
.search-results .search-heading {
  display: block;
  color: #ffaa00;
  text-shadow: 1px 1px 0 #2a2a00;
}
.search-results .search-page,
.search-results .search-snippet {
  display: block;
  font-size: 0.85em;
}
.search-results .search-page {
  color: #707070;
  text-shadow: none;
}
.search-results mark {
  background: none;
  color: #ffff55;
  text-shadow: 1px 1px 0 #3f3f15;
}
.search-results .search-empty {
  padding-left: 1.7rem;
  color: #707070;
  text-shadow: none;
}

.overscroll {
  height: max(0px, 100vh - var(--overscroll-offset, 100vh));
  height: max(0px, 100dvh - var(--overscroll-offset, 100dvh));
}

.nav-page[open] > summary::before,
.nav-group[open] > summary::before,
.toc-group[open] > summary::before {
  transform: rotate(90deg);
}

.nav-page > summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
}
.nav-page > summary::-webkit-details-marker {
  display: none;
}
.nav-page > summary::before {
  content: "";
  position: absolute;
  left: 1.35em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.15s ease;
}
.nav-page > summary {
  padding-left: 2.5em;
  line-height: 1.5em;
}
.nav-links .nav-page > summary a {
  display: inline;
  padding-left: 0;
}

.nav-group > summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
}
.nav-group > summary::-webkit-details-marker {
  display: none;
}
.nav-group > summary::before {
  content: "";
  position: absolute;
  left: 1.35em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.15s ease;
}
.nav-group > summary {
  padding-left: 2.5em;
  line-height: 1.5em;
  color: #b85c38;
}

.nav-group:not([open]):has([aria-current]) > summary {
  color: #ffaa00;
  text-shadow: 1px 1px 0 #2a2a00;
}

.nav-group-pages {
  padding-left: 1em;
}

.toc {
  margin: 0.2em 0 0.5em;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
}
.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links .toc a {
  padding: 0.15em 1em 0.15em 3.25rem;
  line-height: 1.3;
  color: #aaaaaa;
  text-decoration: none;
}
.nav-links .toc a:hover {
  color: #ffffa0;
}
.nav-links .toc a.current {
  color: #ffaa00;
  text-shadow: 1px 1px 0 #2a2a00;
}
.nav-links .toc ul a {
  padding-left: 4.25rem;
}
.toc .toc-group > summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
}
.toc .toc-group > summary::-webkit-details-marker {
  display: none;
}
.toc .toc-group > summary::before {
  content: "";
  position: absolute;
  left: 2.45rem;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.15s ease;
}
.toc .toc-group > summary {
  padding: 0.15em 1em 0.15em 3.25rem;
  line-height: 1.3;
}
.nav-links .toc .toc-group > summary a {
  display: inline;
  padding: 0;
}
.nav-links .toc .toc-group:not([open]) > summary a.current-group {
  color: #ffaa00;
  text-shadow: 1px 1px 0 #2a2a00;
}

@media (prefers-reduced-motion: reduce) {
  .nav-page > summary::before,
  .nav-group > summary::before,
  .toc-group > summary::before {
    transition: none;
  }
}

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