* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-drag: none;
  user-drag: none;
  text-align: center;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary-color: #e4e4e4;
  --text-color: #0c0c0c;
  --text-secondary-color: #3d3d3d;
  --tone-color: #ffffff;
  --tone-color-border: #dadada;
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeOutBack: cubic-bezier(0.82, 0.94, 0.36, 1.08);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.darkmode {
  --tone-color: #000000;
  --tone-color-border: #0c0c0c;
  --primary-color: #141414;
  --text-color: #d7d7d7;
  --text-secondary-color: #a7a7a7;
}

@font-face {
  font-family: "Nunito";
  src: url("../font/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 800;
}

@font-face {
  font-family: "Allan";
  src: url("../font/Allan-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: var(--primary-color);
  color: var(--text-secondary-color);
  font-family: "Nunito", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 85%;
}

.mini-banner {
  padding: 29px 240px;
  margin: 20px 0px;
  background-color: #000000;
  border-radius: 10px;
  font-size: 28px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 3px 3px 0px #000;
  max-width: 990px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-banner {
  background-color: #000000;
  border-radius: 10px;
  color: #ffffff;
  text-shadow: 3px 3px 0px #000;
}

.mini-banner.news,
.mini-banner.mods {
  background-image: url("../assets/mini-banner-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

#logo-image {
  height: 259px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s var(--easeOutBack);
}

#logo-image:hover {
  transform: scale(1.05);
  transition: transform 0.1s var(--easeOutBack);
}
#logo-image:active {
  transform: scale(1);
}

.logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-color);
}

.subtext {
  color: var(--text-secondary-color);
  max-width: 610px;
}

#banner-image {
  background-image: url("../assets/banner1500x450.png");
  width: 95%;
  height: 190px;
  position: absolute;
  z-index: -999;
  background-size: cover;
  border-radius: 10px;
  opacity: 0.9;
}

.bgBlock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000d1;
  z-index: 1000;
}

.darkmode .bgBlock {
  background-color: #2a2a2ac2;
}

.notBox {
  background: var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
  min-width: 250px;
  max-width: 380px;
  z-index: 1001;
  transition: transform 0.3s var(--easeOutBack), opacity 0.3s ease-in-out;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}

.notBox.appear {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.notBox.disappear {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.35s var(--easeInBack), opacity 0.4s ease-in-out;
}

.dotMessageEffect {
  background-image: url(../assets/notBox_icons.svg);
  background-size: 64px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.notBox.default .dotMessageEffect {
  background-image: url();
}

.notBox.error .dotMessageEffect {
  background-position: 0px 0px;
}

.notBox.question .dotMessageEffect {
  background-position: -32px 0px;
}

.notBox.img-prev .dotMessageEffect {
  display: none;
}

.notBox.img-prev {
  background-color: #00000000;
  max-width: unset !important;
  box-shadow: unset !important;
  filter: drop-shadow(8px 8px 0px #0000003c);
}

.button-container {
  margin-top: 10px;
}

.button-container button {
  margin-right: 5px;
  padding: 5px 10px;
  border: solid 1px #c4c4c4;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  background-color: #f7f7f7;
  color: var(--text-color);
  transition: all 0.5s ease;
}

.darkmode .button-container button {
  border: solid 1px #242424;
  background-color: #000000;
}

.button-container button:hover {
  background-color: #c4c4c4;
  transition: all 0s ease;
}

.darkmode .button-container button:hover {
  background-color: #000000;
  transition: all 0s ease;
}

.bgBlock {
  position: fixed;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #00000076;
  z-index: 99;
  transition: opacity 0.5s ease-in-out;
}

.bgBlock.disappear {
  opacity: 0;
}

.hover-tooltip {
  position: absolute;
  background: var(--text-color);
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.248);
  z-index: 1000;
  text-align: center;

  opacity: 0;
  transform: scale(0.9);
  transition: all 0.1s var(--easeOutBack);
}

.darkmode .hover-tooltip {
  box-shadow: 5px 5px 20px rgb(82 82 82 / 10%);
  background: #000000;
  color: var(--text-secondary-color);
}

.hover-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}

.hover-tooltip.fade-out {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.2s var(--easeInBack);
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.arrow-down {
  border-width: 10px 8px 0 8px;
  border-color: var(--text-color) transparent transparent transparent;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-up {
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent var(--text-color) transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.darkmode .arrow-up {
  border-color: transparent transparent #000000 transparent;
}

.darkmode .arrow-down {
  border-width: 10px 8px 0 8px;
  border-color: #000000 transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.box {
  scroll-snap-align: start;
  background-color: var(--tone-color);
  border: solid 1px var(--tone-color-border);
  border-radius: 10px;
  max-width: 530px;
  min-width: 345px;
  min-height: 170px;
  padding: 25px;
  margin: 5px;
  transition: all 0.5s var(--easeOutCubic);
}

.box:hover {
  transform: translateY(-3px);
  background-color: var(--tone-color-border);
  transition: all 0.2s var(--easeOutCubic);
  cursor: pointer;
}

.pfp-news {
  width: 41px;
  height: 41px;
  border-radius: 100%;
  background-image: url(../assets/pfp-Rem.png);
  background-size: cover;
  background-color: #00000035;
  flex-shrink: 0;
}

.message {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.box .text {
  text-align: left;
  max-width: calc(100% - 51px);
  word-wrap: break-word;
}

.news__ {
  padding: 30px;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  width: 1145px;
  flex-wrap: wrap;
  justify-content: center;
}

.news__::-webkit-scrollbar {
  display: contents;
}

#prevNews,
#nextNews {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #fff;
}

h3 {
  margin-bottom: 3px;
  color: var(--text-color);
}

.scroll-circle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.062));
  z-index: 999;
  transition: all 0.3s var(--easeInBack);
  transform: scale(0);
}

.darkmode .scroll-circle {
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.629));
}

.scroll-circle.show {
  transform: scale(1);
  transition: all 0.4s var(--easeOutBack);
}

.scroll-circle:hover {
  transform: scale(1.1);
  transition: all 0.1s var(--easeOutBack);
  cursor: pointer;
}

.scroll-percent {
  display: none;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
}

circle {
  fill: none;
  stroke-width: 7px;
}

.progress-bg {
  stroke: rgb(175 175 175 / 44%);
}

.progress {
  stroke: #969696;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
}

.darkmode .progress-bg {
  stroke: rgb(255 255 255 / 7%);
}

.darkmode .progress {
  stroke: #afafaf;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
}

.darkmode::-webkit-scrollbar {
  width: 10px;
}

.darkmode::-webkit-scrollbar-track {
  background: #101010;
}

.darkmode::-webkit-scrollbar-thumb {
  background: #504e4e;
}

.darkmode::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #bdbdbd;
}

::-webkit-scrollbar-thumb {
  background: #888888;
}

::-webkit-scrollbar-thumb:hover {
  background: #707070;
}

.news__::-webkit-scrollbar,
#body-page::-webkit-scrollbar {
  display: none;
}

.loading__ {
  width: 32px;
  height: 32px;
  background-image: url(../assets/__circleLoad.svg);
  animation-name: spin;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

hr {
  width: 93%;
  margin: 15px 0px;
  border: none;
  background-color: #c9c9c9;
  height: 1px;
  transition: all 0.5s ease;
}

.darkmode hr {
  background-color: #282828;
}

.news-img {
  max-width: 100%;
  height: auto;
  max-height: 385px;
  border-radius: 5px;
  display: block;
  object-fit: cover;
  margin-top: 10px;
}

.time-text {
  font-size: 8px;
  opacity: 0.5;
}

.box .title {
  font-size: 19px;
}

.mods__ {
  width: 87%;
  max-width: 1130px;
}

.mod-box {
  width: 100%;
  background-color: #212121;
  border-radius: 10px;
  margin: 25px 0px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right 160px;
  height: 500px;
}

.mod-info {
  z-index: 1;
  position: relative;
  width: 280px;
  margin: 0px 155px 0px auto;
  top: 100px;
}

.mod_button {
  width: 175px;
  height: 40px;
  border-radius: 10px;
  margin: 0px 7px;
  background-color: #414141;
  box-shadow: 7px 7px 0px #00000021;
  transform: scale(1);
  transition: all 0.3s var(--easeOutBack);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.mod-info {
  z-index: 1;
  position: relative;
  width: 295px;
  margin: 0px 80px 0px auto;
  top: 100px;
}

.mod-title {
  font-family: "Allan";
  color: #fff;
  font-size: 60px;
  filter: drop-shadow(2px 2px 0px #111);
}

.mod-desc {
  filter: drop-shadow(2px 2px 0px #111);
  color: #bebebe;
}

.mod_button:hover {
  transform: scale(1.05);
  background-color: #151515;
  cursor: pointer;
  transition: all 0.05s var(--easeOutBack);
}

.mod-buttons__zone {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0px 0px;
}

.mod-date {
  font-size: 12px;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 0px #111);
  color: #bebebe;
}

.mod-labels {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  filter: drop-shadow(2px 2px 0px #111);
}

#modSearch {
  border: none;
  padding: 5px 60px;
  border-radius: 5px;
  background-color: #c9c9c9;
  font-size: 19px;
  color: #000000;
  font-family: "Nunito";
}

.darkmode #modSearch {
  background-color: #0d0d0d;
  color: #ffffff;
}

#modSearch:focus-visible {
  background-color: #f9f9f9;
  outline: none;
}

.darkmode #modSearch:focus-visible {
  background-color: #282828;
}

.box-download-info {
  width: 555px;
  height: 116px;
  border-radius: 10px 10px 0px 0px;
  border: solid 3.8px #222;
  text-align: left;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 0px 0px #000;
}

.box-download-info .title {
  font-size: 22px;
  text-align: left;
  text-transform: none;
  color: #fff;
}

.download-buttons-zone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 180px;
}
.download-button {
  height: 41px;
  width: 179px;
  background-color: #222;
  margin-bottom: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.download-button:hover {
  opacity: 0.5;
  cursor: pointer;
}

.info-zone-download {
  width: 239px;
}

.adv-info-box {
  min-height: 65px;
  background-color: #222;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  break-inside: avoid;
  box-shadow: 2px 2px 0px 0px #000;
}

.adv-info-box a {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-mod {
  position: absolute;
  top: 50px;
  margin-bottom: 50px;
}

.adv-info-zone {
  width: 556px;
  column-count: 2;
  gap: 10px;
  margin-bottom: 20px;
}

.adv-info-box .title {
  font-size: 17px;
  text-align: left;
  text-transform: none;
  color: #fff;
}

.mod-icon {
  width: 89px;
  height: 89px;
  background-color: #222;
  border-radius: 10px;
  background-size: cover;
}

.desct ul {
  margin: 0;
  list-style-position: inside;
}

.desct {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: 13.5px;
  color: #dadada;
}

ul {
  text-align: left;
  padding-left: 20px;
  list-style-position: inside;
}

li {
  margin: 0;
  padding: 2px 0;
}

.mod-info-pfp {
  width: 57px;
  height: 57px;
  background-color: #333;
  position: absolute;
  border-radius: 100%;
  top: -24px;
  left: -24px;
  box-shadow: 7px 7px 20px #0000008c;
  background-size: cover;
}

.mod-labels-download-info {
  display: flex;
  flex-direction: row;
  gap: 4px;
  height: 1.3em;
  font-size: 13.5px;
  color: #dadada;
}

.video-background {
  position: sticky;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-size: cover;
  top: 0;
  left: 0;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(10px) brightness(0.5);
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.5) 10%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  transform: scale(1.01);
}

.content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
  font-family: Arial, sans-serif;
  padding-top: 20vh;
}

.logo-click {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 20px;
}

.logo-click:hover {
  opacity: 0.5;
  cursor: pointer;
}

.go-back-button {
  width: 42px;
  height: 42px;
  background-color: #555;
  border-radius: 100%;
  background-image: url(../assets/icons/go-back.svg);
  background-size: cover;
  position: relative;
  z-index: 999;
  top: -15;
  left: -15;
}

.go-back-button:hover {
  background-color: #666;
}

.darkmode .go-back-button {
  background-color: #222;
}

.darkmode .go-back-button:hover {
  background-color: #333;
}

.loading-zone {
  position: absolute;
  z-index: 1;
  top: 10px;
}

iframe {
  border-radius: 5px;
  background-color: #111;
  background-image: url("../assets/loading-image.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#body-page {
  width: 90%;
  height: 90%;
  overflow: auto;
  border-radius: 10px;
  z-index: 100;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  box-shadow: 11px 11px 20px rgba(0, 0, 0, 0.15);
  animation: card-zoom-out 0.8s var(--easeOutCubic);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0px;
  margin: 30px;
}

@keyframes card-zoom-out {
  0% {
    transform: rotate(2deg) scale(0.8);
    opacity: 0;
  }
  30% {
    transform: rotate(0deg) scale(1.01);
    opacity: 1;
  }
  100% {
  }
}

.download-page {
  display: flex;
}

.top-bar {
  width: 845px;
  height: 105px;
  margin-top: 10px;
  position: fixed;
  background-color: #141414e0;
  top: 0;
  border-radius: 60px;
  backdrop-filter: blur(15px);
  z-index: 999;
  box-shadow: 0px 10px 1px #00000030;
  transform: translateY(-155px);
  transition: all 0.3s var(--easeInBack);
  display: flex;
  align-items: center;
  padding: 15px 40px;
}

.top-bar.show {
  transform: translateY(0px);
  transition: all 0.4s var(--easeOutBack);
}

.button-topBar {
  width: 62px;
  height: 62px;
}

#btn-go-back {
  background-image: url("../assets/arrow-back.svg");
  background-size: cover;
  cursor: pointer;
}

.txt-prerelease {
  opacity: 0.4;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 13px;
}

.tools-warp {
  width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.tool-window {
  width: 260px;
  height: 255px;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
}

.tool-cover-image {
  width: 100%;
  height: 144px;
  margin-bottom: 10px;
  background-color: #111;
  background-size: cover;
  background-repeat: no-repeat;
}

.tool-name {
  font-size: 20px;
  color: #ccc;
  font-weight: bold;
}

.tool-desc {
  font-size: 14px;
}

.darkmode .tool-window {
  width: 260px;
  height: 255px;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.tool-window {
  width: 260px;
  height: 255px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.tool-window:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

.tool-cover-image {
  width: 100%;
  height: 144px;
  margin-bottom: 10px;
  background-color: #111;
}

.darkmode .tool-name {
  font-size: 20px;
  color: #ccc;
  font-weight: bold;
}

.tool-name {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.tool-cover-image#cover-incrediJSON {
  background-image: url("../assets/tools-covers/cover-incrediJSOn.png");
}

.tool-cover-image#cover-lyricsMaker {
  background-image: url("../assets/tools-covers/cover-lyricsMaker.png");
}

.tool-cover-image#cover-modboxJson {
  background-image: url("../assets/tools-covers/cover-modboxJson.png");
}

.tool-cover-image#cover-AnimPolo {
  background-image: url("../assets/tools-covers/cover-AnimPolo.png");
}

.tool-cover-image#cover-AnimPolo_android {
  background-image: url("../assets/tools-covers/cover-AnimPolo_android.png");
}

.tool-cover-image#cover-rmb {
  background-image: url("../assets/tools-covers/cover-rmb.png");
}

.rmb_download-box {
  width: 345px;
  height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.rmb_download-box .rmb_download {
  width: 330px;
  height: 55px;
  background-color: #a8a8a8;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 9px 9px 0px #00000019;
  transition: all 0.3s;
}

.darkmode .rmb_download-box .rmb_download {
  background-color: #222;
}

.rmb_download-box .rmb_download:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 14px 14px 0px #00000019;
}

.help-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.help-box {
  background: #c9c9c9;
  border-radius: 12px;
  padding: 15px;
  width: 300px;
  transition: 0.2s ease;
}

.darkmode .help-box {
  background: #0d0d0d;
}

.help-box:hover {
  transform: scale(1.02);
}

.help-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.help-desc {
  font-size: 14px;
  color: #646464;
}

.help-img {
  margin-top: 10px;
  max-width: 80%;
  border-radius: 8px;
}

.rmb_banner {
  width: 715px;
  height: 265px;
  background-color: #222;
  margin: 20px;
  border-radius: 10px;
  background-image: url("../RMB/banner_main.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.rmb_eyes {
  pointer-events: none;
  width: 715px;
  height: 265px;
}

.code-box {
  background-color: #c9c9c9;
  color: #000000;
  padding: 0px 20px;
  border-radius: 10px;
  overflow-x: auto;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 15.6px;
  line-height: 1.5;
  width: 90%;
  white-space: pre-wrap;
  text-align: left;
}

.darkmode .code-box {
  background-color: #1e1e1e;
  color: #dcdcdc;
}

.code-box pre {
  margin: 0;
}

.code-box code {
  display: block;
  white-space: pre;
  text-align: left;
}

.comment {
  color: #939393;
  font-style: italic;
}

.darkmode .comment {
  color: #444444ff;
}
