:root {
  --ink: #0a0b09;
  --paper: #f1efe7;
  --paper-dim: #d8d5ca;
  --acid: #d5ff32;
  --acid-dark: #b8dd22;
  --orange: #ff633c;
  --violet: #a06cff;
  --line: rgba(241, 239, 231, .26);
  --line-strong: rgba(241, 239, 231, .58);
  --muted: #96978e;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #111;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% -12%, rgba(213, 255, 50, .08), transparent 28rem),
    #111;
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

button {
  color: inherit;
}

.site-return {
  position: fixed;
  z-index: 90;
  top: 20px;
  left: max(18px, calc((100vw - 1520px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(5, 5, 5, .82);
  color: #d6d6d0;
  font: 800 10px/1 var(--mono);
  letter-spacing: .08em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-return:hover {
  border-color: var(--acid);
  background: #050505;
  color: var(--acid);
}

.cup-site-shell {
  width: min(1450px, calc(100% - 40px));
  min-height: calc(100vh - 42px);
  margin: 42px auto 0;
  border: 1px solid #33352f;
  background: var(--ink);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .42);
}

.rave-brandbar {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 70px;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(10, 11, 9, .96);
}

.rave-brandbar__home {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  padding: 11px 18px;
  color: var(--paper);
  text-decoration: none;
}

.rave-brandbar__home img {
  width: 39px;
  height: 39px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  filter: grayscale(1);
}

.rave-brandbar__home span {
  display: grid;
  gap: 4px;
}

.rave-brandbar__home strong {
  font: 900 13px/1 var(--sans);
  letter-spacing: .01em;
}

.rave-brandbar__home small {
  color: var(--muted);
  font: 700 8px/1 var(--mono);
  letter-spacing: .12em;
}

.rave-brandbar__edition {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  border-left: 1px solid var(--line);
}

.rave-brandbar__edition span,
.rave-brandbar__edition strong {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 21px;
}

.rave-brandbar__edition span {
  color: var(--acid);
  font: 900 14px/1 var(--mono);
  letter-spacing: -.04em;
}

.rave-brandbar__edition strong {
  border-left: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 12px;
}

.cup-language-switch {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  border-left: 1px solid var(--line);
}

.cup-language-switch button {
  min-width: 54px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: 900 10px/1 var(--mono);
  cursor: pointer;
}

.cup-language-switch button.active {
  background: var(--acid);
  color: var(--ink);
}

.music-cup-app {
  min-height: calc(100vh - 114px);
}

.cup-lobby {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(620px, 900px) minmax(130px, 1fr);
  min-height: calc(100vh - 114px);
  overflow: hidden;
}

.lobby-core {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  padding: 54px 42px 40px;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, .96), rgba(10, 11, 9, .91) 12%, rgba(10, 11, 9, .91) 88%, rgba(10, 11, 9, .96)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, .025) 80px);
  text-align: center;
}

.lobby-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--acid);
  font: 800 10px/1 var(--mono);
  letter-spacing: .14em;
}

.lobby-eyebrow::before,
.lobby-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.lobby-core h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.075em;
}

.lobby-core h1 em {
  color: var(--acid);
  font-style: normal;
}

.lobby-stats {
  margin: 19px 0 27px;
  color: #a5a69c;
  font: 700 12px/1 var(--mono);
  letter-spacing: .08em;
}

.cup-search {
  display: grid;
  grid-template-columns: 45px 1fr 52px;
  align-items: center;
  width: min(100%, 590px);
  height: 58px;
  border: 1px solid #62645d;
  background: #11120f;
}

.cup-search svg {
  justify-self: center;
  width: 19px;
  color: #9b9c93;
}

.cup-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
}

.cup-search input::placeholder {
  color: #777970;
}

.cup-search button {
  display: grid;
  place-items: center;
  align-self: stretch;
  border: 0;
  border-left: 1px solid #62645d;
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

.cup-search button:hover {
  background: var(--acid);
  color: #111;
}

.cup-modes {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.cup-modes button {
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid #363832;
  background: #11120f;
  color: #85877f;
  font: 800 10px/1 var(--sans);
  cursor: pointer;
}

.cup-modes button:hover,
.cup-modes button.active {
  border-color: var(--acid);
  color: var(--acid);
}

.quick-start-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(100%, 620px);
  margin: 28px 0 12px;
  color: #92948b;
  font: 800 9px/1 var(--mono);
  letter-spacing: .13em;
}

.quick-start-title span {
  height: 1px;
  background: #30322d;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: min(100%, 760px);
}

.scene-card {
  position: relative;
  isolation: isolate;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid #4a4c45;
  background-position: center;
  background-size: cover;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  filter: grayscale(.85);
  transition: filter .25s ease, transform .25s var(--ease), border-color .25s ease;
}

.scene-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .28));
}

.scene-card strong {
  position: absolute;
  left: 13px;
  bottom: 12px;
  max-width: calc(100% - 46px);
  font: 900 11px/1.15 var(--mono);
}

.scene-card svg {
  position: absolute;
  right: 11px;
  bottom: 10px;
  width: 20px;
}

.scene-card:hover {
  z-index: 2;
  border-color: var(--acid);
  filter: grayscale(0);
  transform: translateY(-3px);
}

.cup-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 26px;
  color: #9b9d94;
  font: 800 9px/1 var(--mono);
  letter-spacing: .06em;
}

.cup-process span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cup-process svg {
  width: 15px;
  height: 15px;
}

.cup-process > svg {
  width: 11px;
  opacity: .4;
}

.lobby-rights {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #6f7169;
  font-size: 9px;
}

.lobby-side-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-inline: 1px solid #252721;
  opacity: .68;
}

.lobby-side-art .artwork {
  position: absolute;
  inset: 8% -75%;
  transform: rotate(-7deg);
}

.lobby-side-art-right .artwork {
  transform: rotate(7deg);
}

.lobby-side-art > span {
  position: absolute;
  bottom: 20px;
  color: rgba(255, 255, 255, .26);
  font: 900 126px/.8 var(--sans);
  letter-spacing: -.12em;
}

.lobby-side-art-left > span {
  right: 12px;
}

.lobby-side-art-right > span {
  left: 2px;
}

.artwork {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #151612;
}

.artwork img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork::before,
.artwork::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.artwork--slash {
  background:
    radial-gradient(circle at 73% 23%, var(--art-color) 0 2%, transparent 2.4%),
    repeating-linear-gradient(108deg, transparent 0 16px, rgba(255,255,255,.08) 17px, transparent 18px 30px),
    #090a08;
}

.artwork--slash::before {
  width: 26%;
  height: 150%;
  background: var(--art-color);
  transform: rotate(25deg);
  box-shadow: 45px 0 0 rgba(255, 255, 255, .13);
}

.artwork--orbit {
  background:
    radial-gradient(circle, #151612 0 20%, transparent 20.5%),
    conic-gradient(from 40deg, var(--art-color), transparent 35%, #f4efe2 49%, transparent 67%, var(--art-color));
}

.artwork--orbit::before {
  width: 52%;
  aspect-ratio: 1;
  border: 4px solid #0a0a09;
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(0, 0, 0, .19), 0 0 0 24px #0a0a09;
}

.artwork--bars {
  background: repeating-linear-gradient(90deg, #11120f 0 12%, var(--art-color) 12% 17%, #efede3 17% 19%, #11120f 19% 27%);
}

.artwork--bars::before {
  width: 78%;
  height: 24%;
  border: 3px solid #111;
  transform: skewX(-22deg);
}

.artwork--arc {
  background: radial-gradient(circle at 50% 108%, transparent 0 35%, var(--art-color) 35.5% 48%, #0d0e0c 48.5%);
}

.artwork--arc::before {
  inset: 10%;
  border: 2px solid rgba(255, 255, 255, .75);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.artwork--void {
  background:
    radial-gradient(circle at 50% 48%, #070707 0 19%, transparent 19.5%),
    repeating-radial-gradient(circle at 50% 48%, var(--art-color) 0 2px, #111 3px 13px);
}

.artwork--grid {
  background:
    linear-gradient(90deg, transparent 49%, var(--art-color) 50% 51%, transparent 52%),
    linear-gradient(transparent 49%, rgba(255,255,255,.55) 50% 51%, transparent 52%),
    #10110e;
  background-size: 38px 38px;
}

.stage-enter {
  animation: stage-in .46s var(--ease) both;
}

@keyframes stage-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tournament-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 64px;
  border-bottom: 1px solid var(--line-strong);
  background: #10110e;
}

.tournament-brand {
  min-width: 170px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--acid);
  font: 950 16px/1 var(--mono);
  text-align: left;
  cursor: pointer;
}

.tournament-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  min-width: 0;
}

.tournament-identity strong {
  font-size: 14px;
  white-space: nowrap;
}

.tournament-identity span {
  overflow: hidden;
  color: #898b83;
  font: 700 10px/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tournament-tools {
  display: grid;
  grid-template-columns: repeat(2, 54px);
  border-left: 1px solid var(--line);
}

.tournament-tools button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: #a5a79e;
  cursor: pointer;
}

.tournament-tools button:hover {
  background: var(--acid);
  color: #111;
}

.draw-screen,
.group-screen,
.knockout-screen,
.champion-screen {
  min-height: calc(100vh - 178px);
}

.draw-screen {
  display: grid;
  grid-template-columns: 34% 66%;
}

.draw-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  padding: 34px;
  background-position: center;
  background-size: cover;
}

.draw-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.9));
}

.draw-scene__label {
  color: var(--acid);
  font: 850 10px/1 var(--mono);
  letter-spacing: .12em;
}

.draw-scene h1 {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  margin: 0;
  font-size: clamp(41px, 5vw, 73px);
  line-height: .91;
  letter-spacing: -.07em;
}

.draw-groups {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px clamp(22px, 4vw, 62px);
}

.draw-groups__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
}

.draw-groups__intro h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -.055em;
}

.draw-groups__intro p {
  max-width: 34ch;
  margin: 0;
  color: #92948b;
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.draw-group {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 104px;
  border: 1px solid #3d3f39;
}

.draw-group > strong {
  display: grid;
  place-items: center;
  border-right: 1px solid #3d3f39;
  color: var(--acid);
  font: 950 37px/1 var(--mono);
}

.draw-track-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.draw-track {
  display: grid;
  grid-template-rows: 50px auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border-right: 1px solid #30322d;
}

.draw-track:last-child {
  border-right: 0;
}

.draw-track .artwork {
  height: 50px;
}

.draw-track span {
  min-width: 0;
}

.draw-track b,
.draw-track small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.draw-track b {
  font-size: 10px;
}

.draw-track small {
  margin-top: 4px;
  color: #7d7f77;
  font: 700 8px/1 var(--mono);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-end;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  background: var(--acid);
  color: #111;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s var(--ease), filter .18s ease;
}

.primary-action:hover {
  filter: brightness(.9);
  transform: translateY(-2px);
}

.group-screen {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 4vw, 58px);
}

.group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.group-heading p {
  margin: 0 0 8px;
  color: var(--acid);
  font: 850 10px/1 var(--mono);
  letter-spacing: .13em;
}

.group-heading h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.07em;
}

.group-progress {
  color: #777970;
  font: 800 10px/1 var(--mono);
  text-align: right;
}

.group-progress strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 18px;
}

.group-track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.group-track-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #42443e;
  background: #10110e;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s var(--ease), background .18s ease;
}

.group-track-card:hover {
  border-color: #888b81;
  transform: translateY(-2px);
}

.group-track-card.selected {
  border-color: var(--acid);
  background: #171b0d;
}

.group-track-card .artwork {
  min-height: 170px;
}

.group-track-card__pick {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(5,5,5,.76);
  font: 900 12px/1 var(--mono);
}

.group-track-card.selected .group-track-card__pick {
  border-color: var(--acid);
  background: var(--acid);
  color: #111;
}

.group-track-card__copy {
  padding: 15px 15px 12px;
}

.group-track-card__copy p {
  margin: 0 0 6px;
  color: var(--acid);
  font: 800 9px/1 var(--mono);
}

.group-track-card__copy h2 {
  overflow: hidden;
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: -.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group-track-card__copy small {
  display: block;
  margin-top: 7px;
  color: #92948c;
  font-size: 11px;
}

.track-store-link {
  position: relative;
  z-index: 10;
  display: inline-block;
  margin-top: 9px;
  color: var(--acid);
  font: 800 8px/1.2 var(--mono);
  letter-spacing: .02em;
  text-decoration: none;
}

.track-store-link:hover {
  text-decoration: underline;
}

.preview-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  overflow: hidden;
  border: 0;
  border-top: 1px solid #343630;
  background: transparent;
  color: #b8bab1;
  font: 800 9px/1 var(--mono);
  cursor: pointer;
}

.preview-button i {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.group-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
}

.group-action-bar p {
  margin: 0;
  color: #777970;
  font-size: 9px;
}

.primary-action:disabled {
  background: #33352f;
  color: #777970;
  cursor: not-allowed;
  transform: none;
}

.knockout-screen {
  display: grid;
  grid-template-rows: auto 1fr;
}

.knockout-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 43px;
  padding: 0 22px;
  border-bottom: 1px solid #30322d;
  color: #85877f;
  font: 800 9px/43px var(--mono);
}

.battle-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px minmax(0, 1fr);
  min-height: 610px;
}

.battle-track {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid #3d3f39;
  background: #0c0d0b;
  cursor: pointer;
}

.battle-track__hit {
  position: absolute;
  z-index: 7;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.battle-track:last-child {
  border-right: 0;
  border-left: 1px solid #3d3f39;
}

.battle-track .artwork {
  min-height: 320px;
}

.battle-track::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  border: 0 solid transparent;
  pointer-events: none;
  transition: border-width .2s ease, border-color .2s ease;
}

.battle-track.selected::after {
  border-width: 4px;
  border-color: var(--acid);
}

.battle-track.loser {
  opacity: .42;
  filter: grayscale(.8);
}

.battle-track__copy {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px;
}

.battle-preview-button {
  width: min(290px, 100%);
  margin-top: 12px;
  border: 1px solid #42443d;
}

.battle-track__copy p {
  margin: 0 0 9px;
  color: var(--acid);
  font: 850 10px/1 var(--mono);
}

.battle-track__copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.07em;
}

.battle-track__copy h3 {
  margin: 9px 0 0;
  color: #9b9d94;
  font-size: 13px;
}

.battle-track__score {
  align-self: end;
  color: #7d7f77;
  font: 800 10px/1 var(--mono);
  text-align: right;
}

.battle-track__score strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: 33px;
}

.battle-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    #11120f;
  background-size: 100% 32px;
  text-align: center;
}

.battle-center p {
  margin: 0 0 18px;
  color: #878981;
  font: 850 9px/1.35 var(--mono);
  letter-spacing: .12em;
}

.battle-center__vs {
  color: var(--acid);
  font: 950 52px/.8 var(--sans);
  letter-spacing: -.08em;
}

.battle-center__match {
  margin-top: 18px;
  color: #777970;
  font: 800 10px/1 var(--mono);
}

.battle-center .primary-action {
  width: 100%;
  margin-top: 28px;
  padding: 0 10px;
  font-size: 11px;
}

.champion-screen {
  display: grid;
  grid-template-columns: 52% 48%;
  background: #0c0d0b;
}

.champion-art {
  position: relative;
  min-height: 620px;
}

.champion-art .artwork {
  min-height: 620px;
}

.champion-art__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  background: var(--acid);
  color: #111;
  font: 950 11px/1 var(--mono);
  letter-spacing: .1em;
}

.champion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 76px);
  border-left: 1px solid var(--line);
}

.champion-copy > p:first-child {
  margin: 0 0 16px;
  color: var(--acid);
  font: 850 10px/1 var(--mono);
  letter-spacing: .12em;
}

.champion-copy h1 {
  margin: 0;
  font-size: clamp(53px, 7vw, 106px);
  line-height: .82;
  letter-spacing: -.085em;
}

.champion-copy h2 {
  margin: 18px 0 0;
  color: #aaa;
  font-size: 17px;
}

.champion-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 33px 0 0;
  border-block: 1px solid #343630;
}

.champion-listen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.champion-listen .preview-button {
  border: 1px solid #42443d;
}

.champion-listen .track-store-link {
  margin: 0;
  padding: 12px 0;
}

.champion-meta div {
  padding: 15px 12px 15px 0;
  border-right: 1px solid #343630;
}

.champion-meta div:not(:first-child) {
  padding-left: 15px;
}

.champion-meta div:last-child {
  border-right: 0;
}

.champion-meta dt {
  color: #777970;
  font: 800 8px/1 var(--mono);
}

.champion-meta dd {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 850;
}

.champion-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.champion-actions button,
.bracket-trigger {
  min-height: 48px;
  border: 1px solid #4a4c45;
  background: transparent;
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.champion-actions button:first-child {
  border-color: var(--acid);
  background: var(--acid);
  color: #111;
}

.champion-actions button:hover,
.bracket-trigger:hover {
  border-color: var(--acid);
}

.bracket-trigger {
  width: 100%;
  margin-top: 8px;
}

.champion-note {
  margin: 15px 0 0;
  color: #777970;
  font-size: 9px;
  line-height: 1.5;
}

.cup-bracket-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
}

.cup-bracket-dialog {
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid #64675e;
  background: #0d0e0c;
  box-shadow: 0 25px 80px #000;
}

.cup-bracket-dialog > header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 22px;
  border-bottom: 1px solid #40423c;
  background: #0d0e0c;
}

.cup-bracket-dialog header p {
  margin: 0 0 5px;
  color: var(--acid);
  font: 800 8px/1 var(--mono);
}

.cup-bracket-dialog header h2 {
  margin: 0;
  font-size: 24px;
}

.cup-bracket-dialog header button {
  width: 42px;
  height: 42px;
  border: 1px solid #40423c;
  background: transparent;
  cursor: pointer;
}

.bracket-rounds {
  display: grid;
  grid-template-columns: 2fr 1.25fr .8fr;
  gap: 1px;
  background: #343630;
}

.bracket-round {
  min-width: 0;
  padding: 20px;
  background: #0d0e0c;
}

.bracket-round__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #8b8d84;
  font: 800 9px/1 var(--mono);
}

.bracket-match {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-bottom: 7px;
  padding: 10px;
  border: 1px solid #343630;
}

.bracket-match > span {
  color: #676960;
  font: 800 8px/1.4 var(--mono);
}

.bracket-match div {
  min-width: 0;
}

.bracket-match b {
  display: block;
  overflow: hidden;
  color: #777970;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bracket-match b + b {
  margin-top: 7px;
}

.bracket-match b.winner {
  color: var(--acid);
}

.noscript-message {
  padding: 20px;
  background: #111;
  color: white;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 12px 16px;
  border: 1px solid var(--acid);
  background: #111;
  color: var(--acid);
  font: 800 10px/1.4 var(--mono);
  box-shadow: 0 12px 40px #000;
  animation: stage-in .25s ease both;
}

.catalog-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: calc(100vh - 184px);
}

.catalog-browser {
  min-width: 0;
  padding: 46px;
  border-right: 1px solid var(--line);
}

.catalog-heading {
  max-width: 850px;
}

.catalog-heading p,
.catalog-results-head,
.catalog-selection header p,
.catalog-courtesy {
  font: 800 9px/1.4 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-heading p {
  margin: 0 0 13px;
  color: var(--acid);
}

.catalog-heading h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.catalog-heading > span {
  display: block;
  max-width: 670px;
  margin-top: 20px;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.6;
}

.catalog-shared-note {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 670px;
  margin-top: 18px;
  padding: 11px 13px;
  border-left: 3px solid var(--acid);
  background: rgba(213, 255, 50, .08);
  color: var(--paper);
  font: 700 10px/1.5 var(--mono);
}

.catalog-shared-note svg {
  flex: 0 0 auto;
  color: var(--acid);
}

.catalog-search {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  border: 1px solid var(--line-strong);
  background: #121310;
  padding-left: 16px;
}

.catalog-search input {
  min-width: 0;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
}

.catalog-search button {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-left: 1px solid var(--ink);
  padding: 0 20px;
  background: var(--acid);
  color: var(--ink);
  font: 900 10px/1 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-discovery {
  margin: 18px 0 36px;
  border-block: 1px solid var(--line-strong);
}

.catalog-discovery > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.catalog-discovery > header h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.035em;
}

.catalog-discovery > header p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.catalog-surprise {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--acid);
  background: transparent;
  color: var(--acid);
  font: 900 9px/1 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-surprise:hover {
  background: var(--acid);
  color: var(--ink);
}

.catalog-surprise svg {
  width: 15px;
}

.catalog-discovery__lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.catalog-discovery__lane {
  min-width: 0;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-discovery__lane:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.catalog-discovery__lane:nth-child(even) {
  padding-left: 18px;
}

.catalog-discovery__lane h3,
.catalog-import label {
  display: block;
  margin: 0 0 11px;
  color: var(--muted);
  font: 850 8px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-discovery__lane > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-discovery__lane button {
  min-height: 29px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper-dim);
  font: 750 9px/1 var(--mono);
  cursor: pointer;
}

.catalog-discovery__lane button:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.catalog-import {
  padding: 18px 0 20px;
}

.catalog-import > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
}

.catalog-import input {
  min-width: 0;
  height: 43px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: #121310;
  color: var(--paper);
  font-size: 11px;
}

.catalog-import button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font: 850 9px/1 var(--mono);
  cursor: pointer;
}

.catalog-import button:hover {
  background: var(--acid);
  color: var(--ink);
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 13px 0 35px;
}

.catalog-chips > span {
  margin-right: 5px;
  color: var(--muted);
  font: 800 8px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-chips button {
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: transparent;
  color: var(--paper-dim);
  font: 700 9px/1 var(--mono);
  cursor: pointer;
}

.catalog-chips button:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.catalog-results-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line-strong);
}

.catalog-results-head span {
  color: var(--muted);
  text-align: right;
}

.catalog-results {
  display: grid;
}

.catalog-status {
  display: grid;
  min-height: 180px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 800 11px/1.5 var(--mono);
  text-align: center;
}

.catalog-status--active {
  color: var(--acid);
}

.catalog-status--error {
  color: var(--orange);
}

.catalog-track {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-track.selected {
  background: linear-gradient(90deg, rgba(213, 255, 50, .08), transparent);
}

.catalog-track > .artwork {
  width: 86px;
  height: 86px;
}

.catalog-track__copy {
  min-width: 0;
}

.catalog-track__copy > p {
  margin: 0 0 5px;
  color: var(--acid);
  font: 800 8px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-track__copy h3 {
  overflow: hidden;
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-track__copy > span {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--paper-dim);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-track__copy > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.catalog-preview {
  width: auto;
  min-height: 30px;
  padding: 0 10px;
  font-size: 8px;
}

.catalog-track__select {
  min-width: 108px;
  min-height: 42px;
  border: 1px solid var(--acid);
  background: transparent;
  color: var(--acid);
  font: 900 9px/1.2 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-track.selected .catalog-track__select {
  border-color: var(--line-strong);
  color: var(--paper-dim);
}

.catalog-track__select:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.catalog-selection {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 184px);
  max-height: calc(100vh - 20px);
  background: #0d0e0c;
}

.catalog-selection > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line-strong);
}

.catalog-selection header p {
  margin: 0 0 5px;
  color: var(--muted);
}

.catalog-selection header strong {
  color: var(--acid);
  font: 900 22px/1 var(--mono);
}

.catalog-selection header button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 800 9px/1 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-selection__list {
  flex: 1;
  overflow-y: auto;
}

.catalog-selection__list article {
  display: grid;
  grid-template-columns: 25px 44px 1fr 24px;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 8px 15px;
  border-bottom: 1px solid var(--line);
}

.catalog-selection__list article > span {
  color: var(--muted);
  font: 800 8px/1 var(--mono);
}

.catalog-selection__list .artwork {
  width: 44px;
  height: 44px;
}

.catalog-selection__list article div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.catalog-selection__list b,
.catalog-selection__list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-selection__list b {
  font-size: 11px;
}

.catalog-selection__list small {
  color: var(--muted);
  font-size: 9px;
}

.catalog-selection__list article > button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.catalog-selection__empty {
  margin: 0;
  padding: 28px 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.catalog-selection__actions {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.catalog-start {
  margin: 0;
}

.catalog-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  font: 900 9px/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-share:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.catalog-share:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.catalog-courtesy {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1000px) {
  .catalog-screen {
    grid-template-columns: 1fr 330px;
  }

  .catalog-browser {
    padding: 32px 24px;
  }

  .cup-site-shell {
    width: calc(100% - 24px);
  }

  .cup-lobby {
    grid-template-columns: 90px minmax(0, 1fr) 90px;
  }

  .lobby-core {
    padding-inline: 28px;
  }

  .draw-screen {
    grid-template-columns: 30% 70%;
  }

  .draw-groups {
    padding-inline: 22px;
  }

  .group-screen {
    padding: 28px;
  }

  .group-track-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .battle-stage {
    grid-template-columns: 1fr 118px 1fr;
  }

  .battle-track__copy {
    grid-template-columns: 1fr;
  }

  .battle-track__score {
    text-align: left;
  }

  .battle-track__score strong {
    display: inline;
    margin-left: 8px;
  }
}

@media (max-width: 700px) {
  .catalog-screen {
    display: block;
  }

  .catalog-browser {
    padding: 27px 16px;
    border-right: 0;
  }

  .catalog-heading h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .catalog-search {
    grid-template-columns: 20px 1fr;
    padding: 0 12px;
  }

  .catalog-search button {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 48px;
    margin: 0 -12px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .catalog-discovery > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .catalog-surprise {
    width: 100%;
    justify-content: center;
  }

  .catalog-discovery__lanes {
    grid-template-columns: 1fr;
  }

  .catalog-discovery__lane,
  .catalog-discovery__lane:nth-child(even) {
    padding: 16px 0;
    border-right: 0;
  }

  .catalog-import > div {
    grid-template-columns: 1fr;
  }

  .catalog-import button {
    justify-content: center;
    min-height: 42px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-results-head span {
    display: none;
  }

  .catalog-track {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .catalog-track > .artwork {
    width: 72px;
    height: 72px;
  }

  .catalog-track__select {
    grid-column: 1 / -1;
    width: 100%;
  }

  .catalog-track__copy h3 {
    font-size: 16px;
  }

  .catalog-track__copy > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .catalog-selection {
    position: static;
    min-height: 0;
    max-height: none;
    border-top: 1px solid var(--line-strong);
  }

  .catalog-selection__list {
    max-height: none;
  }

  body {
    background: var(--ink);
  }

  .site-return {
    position: static;
    display: flex;
    width: 100%;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #343630;
    background: #111;
  }

  .cup-site-shell {
    width: 100%;
    min-height: calc(100vh - 38px);
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .rave-brandbar {
    min-height: 58px;
  }

  .rave-brandbar__home {
    min-width: 0;
    padding: 9px 12px;
  }

  .rave-brandbar__home img {
    width: 34px;
    height: 34px;
  }

  .rave-brandbar__home strong {
    font-size: 10px;
  }

  .rave-brandbar__home small {
    font-size: 7px;
  }

  .rave-brandbar__edition {
    display: block;
    padding: 0 12px;
  }

  .rave-brandbar__edition span {
    height: 100%;
    padding: 0;
    font-size: 11px;
  }

  .rave-brandbar__edition strong {
    display: none;
  }

  .cup-language-switch button {
    min-width: 42px;
    font-size: 9px;
  }

  .music-cup-app {
    min-height: calc(100vh - 96px);
  }

  .cup-lobby {
    display: block;
    min-height: calc(100vh - 96px);
  }

  .lobby-side-art {
    display: none;
  }

  .lobby-core {
    min-height: calc(100vh - 96px);
    justify-content: flex-start;
    padding: 35px 18px 28px;
    background: var(--ink);
  }

  .lobby-eyebrow {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .lobby-core h1 {
    max-width: 360px;
    font-size: clamp(40px, 13.2vw, 56px);
    line-height: .92;
  }

  .lobby-stats {
    margin: 15px 0 20px;
    font-size: 9px;
  }

  .cup-search {
    grid-template-columns: 39px 1fr 46px;
    height: 52px;
  }

  .cup-modes {
    width: 100%;
  }

  .cup-modes button {
    flex: 1 1 0;
    padding: 0 5px;
    font-size: 9px;
  }

  .quick-start-title {
    margin-top: 22px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 74px;
  }

  .cup-process {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 19px;
  }

  .cup-process span {
    gap: 4px;
    font-size: 8px;
  }

  .tournament-header {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .tournament-brand {
    display: none;
  }

  .tournament-identity {
    padding: 0 12px;
  }

  .tournament-identity strong {
    font-size: 11px;
  }

  .tournament-identity span {
    font-size: 8px;
  }

  .tournament-tools {
    grid-template-columns: repeat(2, 46px);
  }

  .draw-screen,
  .group-screen,
  .knockout-screen,
  .champion-screen {
    min-height: calc(100vh - 154px);
  }

  .draw-screen {
    display: block;
  }

  .draw-scene {
    min-height: 200px;
    padding: 18px;
  }

  .draw-scene h1 {
    right: 17px;
    bottom: 17px;
    left: 17px;
    font-size: 42px;
  }

  .draw-groups {
    padding: 24px 14px 30px;
  }

  .draw-groups__intro {
    display: block;
  }

  .draw-groups__intro h2 {
    font-size: 34px;
  }

  .draw-groups__intro p {
    margin-top: 8px;
    text-align: left;
  }

  .draw-group {
    grid-template-columns: 48px 1fr;
  }

  .draw-group > strong {
    font-size: 24px;
  }

  .draw-track-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .draw-track {
    border-bottom: 1px solid #30322d;
  }

  .draw-track:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .draw-groups .primary-action {
    width: 100%;
  }

  .group-screen {
    padding: 23px 14px 30px;
  }

  .group-heading {
    align-items: flex-start;
    margin-bottom: 17px;
  }

  .group-heading h1 {
    font-size: 41px;
  }

  .group-progress strong {
    font-size: 14px;
  }

  .group-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .group-track-card {
    grid-template-rows: 120px auto auto;
  }

  .group-track-card .artwork {
    min-height: 120px;
  }

  .group-track-card__copy {
    padding: 11px 10px 9px;
  }

  .group-track-card__copy h2 {
    font-size: 17px;
  }

  .group-track-card__copy small {
    font-size: 9px;
  }

  .preview-button {
    min-height: 37px;
    padding: 0 10px;
    font-size: 8px;
  }

  .group-action-bar {
    display: grid;
    gap: 12px;
  }

  .group-action-bar .primary-action {
    width: 100%;
  }

  .knockout-note {
    min-height: 39px;
    padding: 0 10px;
    font-size: 7px;
    line-height: 39px;
  }

  .knockout-note span:last-child {
    display: none;
  }

  .battle-stage {
    grid-template-columns: 1fr 58px 1fr;
    min-height: calc(100vh - 193px);
  }

  .battle-track {
    grid-template-rows: minmax(215px, 48vh) auto;
  }

  .battle-track .artwork {
    min-height: 215px;
  }

  .battle-track__copy {
    display: block;
    padding: 13px 10px;
  }

  .battle-track__copy p {
    margin-bottom: 6px;
    font-size: 7px;
  }

  .battle-track__copy h2 {
    font-size: clamp(20px, 7.6vw, 30px);
    line-height: .93;
  }

  .battle-track__copy h3 {
    margin-top: 6px;
    font-size: 9px;
  }

  .battle-track__score {
    margin-top: 13px;
    font-size: 7px;
  }

  .battle-track__score strong {
    font-size: 19px;
  }

  .battle-center {
    padding: 16px 5px;
  }

  .battle-center p {
    font-size: 7px;
  }

  .battle-center__vs {
    font-size: 31px;
  }

  .battle-center__match {
    font-size: 7px;
  }

  .battle-center .primary-action {
    min-height: 74px;
    padding: 5px;
    font-size: 8px;
    line-height: 1.25;
    writing-mode: vertical-rl;
  }

  .champion-screen {
    display: block;
  }

  .champion-art,
  .champion-art .artwork {
    min-height: 42vh;
  }

  .champion-copy {
    padding: 28px 18px 38px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .champion-copy h1 {
    font-size: clamp(55px, 18vw, 78px);
  }

  .champion-meta {
    margin-top: 24px;
  }

  .champion-actions {
    grid-template-columns: 1fr;
  }

  .cup-bracket-backdrop {
    padding: 0;
  }

  .cup-bracket-dialog {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border: 0;
  }

  .bracket-rounds {
    display: block;
  }

  .bracket-round {
    border-bottom: 1px solid #343630;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
