body {
  margin: 0;
  background: var(--bg);
  overflow-x: hidden;
  overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji";
}
body[data-color-scheme=dark] {
  --bg-contrast: #ffffff;
  --bg-contrast-inv: #000000;
  --bg: #09090b;
  --border-color: gray;
  --bg-content: #16161a;
  --shadow: rgba(0, 0, 0, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.8);
}
body[data-color-scheme=light] {
  --bg-contrast: #000000;
  --bg-contrast-inv: #ffffff;
  --bg: #ffffff;
  --border-color: #dadce0;
  --bg-content: #ffffff;
  --shadow: rgba(255, 255, 255, 0.8);
  --shadow-dark: #8e8e8e;
}
body[data-color-scheme=light] uix-homepage-header img, body[data-color-scheme=light] uix-sitemap img {
  filter: contrast(0) brightness(0);
  -webkit-filter: contrast(0) brightness(0);
}
body[data-color-scheme=light] .info-card-container .info-card {
  border-color: black;
}
body .grid {
  --grid-size: 48px;
  --grid-size-min: 0%;
  --grid-color: rgba(78, 78, 78, 0.1);
  opacity: 0.6;
  --grid-color-min: transparent;
  --grid-weight: 1px;
  --grid-weight-min: 1px;
  position: absolute;
  animation: move 1.5s linear infinite !important;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, #09090b 0px 0px 80px 48px inset;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 1000px;
  background-size: var(--grid-size) var(--grid-size);
  background-image: linear-gradient(90deg, #8882 1px, transparent 0), linear-gradient(180deg, #8882 1px, transparent 0);
  background-position: 15px 0;
}
@keyframes move {
  0% {
    transform: translate(0);
  }
  to {
    transform: translateY(-48px);
  }
}
body a {
  text-decoration: none;
  color: var(--accent);
}
body .update-container > .tag-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 90%;
}
body .update-container > .tag-container > span {
  background-color: var(--bg);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border-radius: 1000px;
  text-align: center;
}
body .update-container > .tag-container > span.new {
  border-color: var(--green);
}
body .error-page, body .update-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
  flex-direction: column;
  text-align: center;
  width: calc(100% - 20px);
  margin: auto;
}
body .error-page > h1, body .update-container > h1 {
  margin: 0;
  font-size: 70px;
}
body .error-page > span, body .update-container > span {
  font-size: x-large;
  opacity: 0.8;
}
body .error-page > a, body .update-container > a {
  padding: 14px 20px;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  transition: color 0.2s, background-color 0.2s;
  margin-top: 20px;
  color: white;
  border-radius: 10px;
}
body .error-page > a:hover, body .update-container > a:hover {
  background-color: transparent;
  color: var(--accent);
}
body .error-page .grid, body .update-container .grid {
  height: 100svh;
  border-radius: 0px;
  width: 100vw;
}
body[data-color-scheme=light] .grid {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, white 0px 0px 80px 48px inset !important;
}
