.broadcast-v2-result {
  --result-accent: #8bd8ff;
  color: #edf6fb;
  text-align: left;
  background: linear-gradient(110deg, #041019f2, #092330e8);
  border: 1px solid #72ceff47;
  border-radius: 8px;
  width: 100%;
  min-width: 0;
  padding: 14px;
  animation: .22s ease-out both broadcast-result-enter;
  box-shadow: 0 6px 20px #00000038;
}

.broadcast-v2-result[data-champion="true"] {
  --result-accent: #eac255;
  background: radial-gradient(at 100% 0, #98712340, #0000 70%), #091923;
  border-color: #eac2558c;
}

.broadcast-v2-result-heading {
  align-items: center;
  gap: 10px;
  display: flex;
}

.broadcast-v2-result-heading > div {
  flex: 1;
  min-width: 0;
}

.broadcast-v2-result-heading .label-xs {
  color: #bdcbd4;
  overflow-wrap: anywhere;
}

.broadcast-v2-result-heading h2 {
  color: var(--result-accent);
  margin: 2px 0 0;
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1;
}

.broadcast-v2-result-icon {
  width: 26px;
  height: 26px;
  color: var(--result-accent);
  flex-shrink: 0;
}

.broadcast-v2-result-record {
  color: var(--result-accent);
  white-space: nowrap;
  font-size: 24px;
}

.broadcast-v2-result-score {
  font-variant-numeric: tabular-nums;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: clamp(18px, 4vw, 25px);
  display: grid;
}

.broadcast-v2-result-score > span:last-child {
  text-align: right;
}

.broadcast-v2-result-score strong > span {
  color: #8b9faa;
}

.broadcast-v2-result-rounds {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.broadcast-v2-result-rounds li {
  text-align: center;
  letter-spacing: .06em;
  color: #bdcbd4;
  background: #ffffff0a;
  border-top: 2px solid #435461;
  flex-direction: column;
  gap: 3px;
  padding: 6px 4px;
  font-size: 10px;
  display: flex;
}

.broadcast-v2-result-rounds li[data-won] {
  border-color: var(--result-accent);
  color: var(--result-accent);
}

.broadcast-v2-result-rounds li[aria-current="step"] {
  color: #edf6fb;
  border-color: #edf6fb;
}

.broadcast-v2-result-caption {
  color: #bdcbd4;
  overflow-wrap: anywhere;
  margin: 9px 0 0;
  font-size: 12px;
}

@keyframes broadcast-result-enter {
  from {
    opacity: 0;
    translate: 0 6px;
  }

  to {
    opacity: 1;
    translate: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .broadcast-v2-result {
    animation: none;
  }
}
