* {
  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;
}
button,
input {
  font: inherit;
}
a {
  color: #f0ede4;
  text-decoration: none;
}
a:hover {
  color: #2fb44f;
}
button:hover {
  filter: brightness(1.08);
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #2fb44f;
  outline-offset: 2px;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes stripes {
  to {
    background-position: 48px 0;
  }
}
@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;
}
.nobar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nobar::-webkit-scrollbar {
  display: none;
}
.streamer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.image-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, #2fb44f44, transparent 45%), #101310;
  font-family: Anton, sans-serif;
  font-size: clamp(54px, 9vw, 120px);
  color: #6f786f;
}
[data-row]:hover .rowdetail {
  display: grid !important;
}
[hidden] {
  display: none !important;
}
@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;
  }
}
