* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000000;
  color: #f0ede4;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #f0ede4;
  text-decoration: none;
}
a:hover {
  color: #2fb44f;
}
button:hover {
  filter: brightness(1.12);
}
[hidden] {
  display: none !important;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes stripes {
  to {
    background-position: 48px 0;
  }
}
@keyframes dots {
  0% {
    content: '';
  }
  25% {
    content: '.';
  }
  50% {
    content: '..';
  }
  75% {
    content: '...';
  }
}
@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.scrollzone {
  scrollbar-width: thin;
  scrollbar-color: #3a423a transparent;
}
.scrollzone::-webkit-scrollbar {
  width: 8px;
}
.scrollzone::-webkit-scrollbar-thumb {
  background: #3a423a;
  border-radius: 999px;
}
@media (max-width: 620px) {
  .rowdetail {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
@media (max-width: 1150px) {
  .rowchip {
    display: none !important;
  }
}
@media (max-width: 900px) {
  #vsroot {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto minmax(0, 1.25fr) auto minmax(0, 1fr) !important;
  }
  #vshead {
    grid-column: 1 !important;
  }
  #vsothers {
    order: 0 !important;
  }
  #vschamp {
    order: 2 !important;
    overflow-y: auto !important;
  }
  #vsmid {
    order: 1 !important;
    flex-direction: row !important;
    min-width: 0 !important;
    gap: 14px !important;
  }
  #vsmid > div:first-child,
  #vsmid > div:last-child {
    width: auto !important;
    height: 1px !important;
    flex: 1 !important;
    background: #333a33 !important;
  }
}
