* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #f0ede4;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes stripes {
  to {
    background-position: 48px 0;
  }
}
@keyframes sweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
#vsroot {
  height: 100dvh;
  width: 100%;
  display: grid;
  gap: 10px;
  padding: clamp(10px, 1.6vw, 20px);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 12% 0%, #2fb44f24, transparent 62%),
    radial-gradient(110% 90% at 100% 100%, #ffffff0f, transparent 60%), #000;
}
#vshead {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2px, 0.6vh, 8px);
  padding: clamp(2px, 0.8vh, 10px) clamp(4px, 0.8vw, 12px) clamp(6px, 1vh, 12px);
}
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 14px);
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.title img {
  height: clamp(72px, 13vh, 170px);
  width: auto;
  mix-blend-mode: screen;
  margin: calc(-0.16em - 6px) -10px;
}
.title span {
  position: relative;
  top: clamp(5px, 1.2vh, 14px);
  font-size: clamp(15px, 2vw, 30px);
  color: #2fb44f;
}
.title strong {
  position: relative;
  top: clamp(5px, 1.2vh, 14px);
  font-size: clamp(26px, 3.4vw, 54px);
  font-weight: 400;
}
.title + p {
  margin: 0;
  font-size: clamp(11px, 1.5vw, 19px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d6ddd6;
}
#vschamp {
  order: 3;
  position: relative;
  min-height: 0;
  border: 1px solid #f0ede466;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0b0d0b;
}
.portrait {
  position: absolute;
  inset: 0;
  background:
    center/cover no-repeat,
    radial-gradient(circle at 50% 20%, #2fb44f55, transparent 45%),
    #101510;
  filter: saturate(0.85);
}
.live {
  position: absolute;
  top: clamp(12px, 1.6vw, 18px);
  left: clamp(12px, 1.6vw, 18px);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  background: #2fb44f;
  border-radius: 999px;
  padding: 5px 12px;
}
.live i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #000;
  animation: pulseGlow 1.4s ease-in-out infinite;
}
.champ-copy {
  position: relative;
  margin-top: auto;
  padding: clamp(14px, 2.2vw, 26px);
  background: linear-gradient(to top, #000 12%, #000b0 55%, transparent);
}
.champ-copy p {
  margin: 0 0 4px;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.champ-copy h1,
.champ-copy h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
}
.champ-copy h1 {
  font-size: clamp(30px, 4.6vw, 72px);
}
.champ-copy h2 {
  margin-top: 10px;
  font-size: clamp(20px, 2.6vw, 40px);
}
.champ-copy .muted {
  margin-top: 2px;
  color: #8a938a;
  letter-spacing: 0.14em;
}
.champ-copy a {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: clamp(10px, 1.15vw, 12px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #9146ff;
  border-radius: 10px;
  padding: clamp(10px, 1.4vh, 14px);
}
#vsmid {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: clamp(48px, 7vw, 120px);
}
#vsmid i {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, #333a33);
}
#vsmid i:last-child {
  background: linear-gradient(to top, transparent, #333a33);
}
#vsmid b {
  position: relative;
  font-family: Anton, sans-serif;
  font-size: clamp(46px, 7.5vw, 128px);
  line-height: 1;
  letter-spacing: -0.04em;
  transform: rotate(-6deg);
  text-shadow:
    7px 7px #000,
    10px 10px #2fb44f,
    0 0 40px #2fb44f7a;
}
#vsmid small {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a938a;
  text-align: center;
}
#vsothers {
  order: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #242a24;
  border-radius: 20px;
  background: #0b0d0b;
  padding: clamp(12px, 1.6vw, 20px);
}
#vsothers header,
#vsothers footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
}
#vsothers h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}
#vsothers header p,
#vsothers footer {
  margin: 0;
  font-size: clamp(10px, 1.05vw, 12px);
  color: #8a938a;
}
.filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.filters button {
  flex: none;
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #2a312a;
  color: #b4bdb4;
  background: transparent;
}
.filters button[aria-pressed='true'] {
  background: #2fb44f;
  color: #000;
  border-color: #2fb44f;
}
.ratio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.ratio span,
.ratio i {
  height: 20px;
}
.ratio span {
  border-radius: 999px 0 0 999px;
  background: #f0ede4;
}
.ratio i {
  flex: 1;
  border-radius: 0 999px 999px 0;
  background: repeating-linear-gradient(115deg, #2fb44f 0 14px, #1f8a3c 14px 24px);
  background-size: 48px 100%;
  animation: stripes 1.6s linear infinite;
}
.ratio small {
  font-size: clamp(10px, 1.05vw, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a938a;
  white-space: nowrap;
}
.rows {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scrollzone {
  scrollbar-width: thin;
  scrollbar-color: #3a423a transparent;
}
.row {
  border: 1px solid #1c211c;
  border-radius: 12px;
  background: #101310;
  padding: 8px 12px;
}
.row:hover,
.row.open {
  border-color: #2fb44f99;
}
.row-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rank {
  font-family: Anton, sans-serif;
  font-size: clamp(11px, 1.15vw, 15px);
  color: #4f584f;
  min-width: 3ch;
  text-align: right;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background: #1a1f1a center/cover;
  border: 2px solid #2a312a;
  flex: none;
  display: grid;
  place-items: center;
  font-family: Anton, sans-serif;
  font-size: 12px;
  color: #6f786f;
}
.avatar.live-avatar {
  border-color: #2fb44f;
}
.streamer {
  flex: 1;
  min-width: 0;
}
.streamer b {
  display: block;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.35vw, 18px);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar {
  margin-top: 5px;
  height: 6px;
  border-radius: 999px;
  background: #000;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: #2fb44f;
}
.viewers,
.amount small {
  font-size: clamp(9px, 0.95vw, 11px);
  color: #8a938a;
  white-space: nowrap;
}
.twitch {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #9146ff26;
  color: #b98cff;
  font-size: 12px;
  flex: none;
}
.amount {
  text-align: right;
  white-space: nowrap;
}
.amount b {
  display: block;
  font-family: Anton, sans-serif;
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 400;
}
.details {
  display: none;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #2a312a;
  font-size: 12px;
  color: #b4bdb4;
}
.row.open .details {
  display: block;
}
.details em {
  color: #2fb44f;
  font-style: normal;
}
footer button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: #f0ede4;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 60px);
  text-align: center;
  background: #000d;
  backdrop-filter: blur(14px) saturate(0.6);
}
.overlay[hidden] {
  display: none;
}
.overlay > div {
  position: relative;
}
.overlay > div::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(100deg, transparent, #ffffff0f, transparent);
  animation: sweep 3.4s ease-in-out infinite;
  pointer-events: none;
}
.overlay p {
  position: relative;
  margin: 0;
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2fb44f;
}
.overlay h1 {
  position: relative;
  margin: clamp(14px, 2.5vh, 28px) 0;
  font-family: Anton, sans-serif;
  font-size: clamp(44px, 13vw, 190px);
  font-weight: 400;
  line-height: 0.86;
  text-shadow: 0 0 60px #f0ede473;
}
.overlay p:nth-of-type(2) {
  color: #b4bdb4;
}
.load {
  position: relative;
  width: min(420px, 70vw);
  height: 4px;
  margin: clamp(14px, 2.5vh, 28px) auto 0;
  border-radius: 99px;
  overflow: hidden;
  background: #ffffff14;
}
.load i {
  display: block;
  height: 100%;
  background: #f0ede4;
}
.overlay button {
  position: relative;
  margin-top: 20px;
  border: 1px solid #ffffff26;
  border-radius: 999px;
  padding: 10px 20px;
  color: #b4bdb4;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  #vsroot {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1.25fr) auto minmax(0, 1fr);
  }
  #vshead {
    grid-column: 1;
  }
  #vsothers {
    order: 0;
  }
  #vschamp {
    order: 2;
    overflow-y: auto;
  }
  #vsmid {
    order: 1;
    flex-direction: row;
    min-width: 0;
    gap: 14px;
  }
  #vsmid i {
    width: auto;
    height: 1px;
    flex: 1;
    background: #333a33;
  }
  #vsmid b {
    font-size: clamp(38px, 9vw, 76px);
  }
}
@media (max-width: 620px) {
  .row-main {
    gap: 7px;
  }
  .viewers {
    display: none;
  }
  .title img {
    height: 58px;
  }
}
