:root {
  color-scheme: dark;
  --ink: #f9fbff;
  --muted: rgba(249, 251, 255, 0.72);
  --panel: rgba(7, 10, 18, 0.78);
  --panel-strong: rgba(8, 11, 22, 0.92);
  --line: rgba(255, 255, 255, 0.18);
  --fire: #ff6a19;
  --sky: #48c7ff;
  --pink: #ff75cf;
  --gold: #ffd36a;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #05070c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
}

body {
  display: grid;
  place-items: center;
}

.shell {
  position: relative;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  min-width: 320px;
  min-height: 180px;
  background: #080b12;
  overflow: hidden;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: auto;
}

.rotate-hint,
.mobile-controls {
  display: none;
}

.mobile-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 8;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
  pointer-events: none;
}

.touch-cluster {
  display: flex;
  align-items: end;
  gap: 9px;
  pointer-events: auto;
}

.touch-btn {
  min-width: 52px;
  width: 52px;
  min-height: 52px;
  height: 52px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 8, 16, 0.56);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), inset 0 0 18px rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 2px 8px #000;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.touch-btn--jump {
  margin-bottom: 18px;
}

.touch-btn--small {
  width: 58px;
  min-width: 58px;
  font-size: 10px;
}

.screen {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 105, 24, 0.32), transparent 34%),
    radial-gradient(circle at 78% 30%, rgba(55, 172, 255, 0.34), transparent 35%),
    linear-gradient(145deg, rgba(3, 5, 10, 0.96), rgba(9, 12, 24, 0.88));
  z-index: 10;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.screen[hidden] {
  display: none;
}

.screen > * {
  position: relative;
  z-index: 1;
}

.loading-panel,
.menu-panel,
.message-screen {
  width: min(520px, calc(100% - 40px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  text-align: center;
}

.loading-panel {
  align-self: end;
  margin-bottom: 82px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.loading-panel h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.loading-panel p {
  display: none;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.65);
}

.loading-panel p,
.message-screen p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 20px);
}

.load-bar {
  width: min(560px, 58vw);
  height: 14px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(4, 5, 10, 0.52);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 91, 16, 0.35), 0 0 32px rgba(51, 190, 255, 0.26);
}

.load-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--gold), var(--sky));
  transition: width 160ms ease;
}

.loading-screen {
  background: #050507 url("assets/ui/loading_page.png") center / cover no-repeat;
}

button {
  appearance: none;
  min-width: 150px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
  color: var(--ink);
  font: 900 15px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

button:hover,
button:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
  outline: none;
}

.title-screen {
  background: #02040a;
}

.title-screen::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: url("assets/ui/title_screen.png") center / cover no-repeat;
  opacity: 0.36;
  filter: blur(14px);
}

.title-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-title-mark {
  position: absolute;
  left: 24px;
  top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.title-actions {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.select-screen {
  align-content: center;
  gap: clamp(12px, 2.1vh, 22px);
  padding: clamp(18px, 3.4vw, 42px);
  background:
    radial-gradient(circle at 50% 42%, rgba(156, 48, 255, 0.46), transparent 28%),
    radial-gradient(circle at 24% 38%, rgba(0, 186, 255, 0.28), transparent 30%),
    radial-gradient(circle at 77% 38%, rgba(255, 62, 180, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(2, 4, 14, 0.16), rgba(1, 2, 8, 0.82)),
    url("assets/ui/arena_unicorn_stage.png") center / cover no-repeat;
}

.select-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 168, 255, 0.2), transparent 32%, transparent 68%, rgba(255, 55, 178, 0.22)),
    radial-gradient(circle at 50% 95%, rgba(102, 51, 255, 0.42), transparent 38%);
  pointer-events: none;
}

.select-screen h1 {
  font-size: clamp(42px, 7.2vw, 86px);
  line-height: 0.88;
  text-align: center;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 26px rgba(68, 201, 255, 0.82),
    0 0 34px rgba(255, 64, 201, 0.68),
    0 8px 0 rgba(0, 0, 0, 0.48);
}

.select-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(118px, 170px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  width: min(1220px, 100%);
}

.level-select {
  display: grid;
  gap: 12px;
  width: min(1030px, 100%);
}

.level-select h2 {
  color: #fff;
  font-size: clamp(17px, 2.1vw, 25px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.52), 0 3px 16px rgba(0, 0, 0, 0.72);
}

.level-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(104px, 1fr));
  gap: 12px;
}

.level-card {
  position: relative;
  min-width: 0;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(5, 8, 18, 0.74);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.36);
}

.level-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.level-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.level-card span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 8px;
  color: #fff;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 1000;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}

.level-card.is-selected {
  border-color: rgba(255, 216, 90, 0.94);
  box-shadow:
    0 0 0 2px rgba(255, 216, 90, 0.44),
    0 0 30px rgba(255, 216, 90, 0.52),
    inset 0 0 40px rgba(255, 216, 90, 0.12);
}

.level-card.is-selected img {
  opacity: 0.9;
  transform: scale(1.04);
}

.player-select {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px 26px 26px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 7, 20, 0.62);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.05), 0 24px 60px rgba(0, 0, 0, 0.45);
  clip-path: polygon(4% 0, 88% 0, 100% 16%, 100% 100%, 0 100%, 0 14%);
}

.player-select::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid currentColor;
  opacity: 0.68;
  pointer-events: none;
  clip-path: inherit;
}

.player-select--p1 {
  color: #35caff;
  border-color: rgba(52, 203, 255, 0.76);
  box-shadow:
    0 0 32px rgba(44, 196, 255, 0.28),
    inset 0 0 70px rgba(0, 180, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.player-select--p2 {
  color: #ff4cc4;
  border-color: rgba(255, 75, 198, 0.76);
  box-shadow:
    0 0 32px rgba(255, 63, 195, 0.28),
    inset 0 0 70px rgba(255, 55, 180, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.player-select h2 {
  color: currentColor;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px currentColor, 0 4px 18px rgba(0, 0, 0, 0.86);
}

.pick-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 14px;
}

.pick-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: end;
  min-width: 0;
  min-height: clamp(260px, 39vh, 382px);
  padding: 18px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 24, 0.78);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.pick-card::after {
  content: "SELECTED";
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  min-width: 86px;
  padding: 7px 10px;
  border-radius: 6px;
  background: currentColor;
  color: #06101c;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 8px);
  box-shadow: 0 0 18px currentColor;
}

.pick-card--maddie {
  color: #ff4cc4;
  box-shadow: inset 0 0 80px rgba(255, 108, 201, 0.16);
}

.pick-card--hendo {
  color: #25bfff;
  box-shadow: inset 0 0 80px rgba(255, 119, 26, 0.18);
}

.pick-card--mega {
  color: #b886ff;
  box-shadow: inset 0 0 80px rgba(255, 153, 35, 0.18);
}

.pick-card.is-selected {
  border-color: currentColor;
  transform: translateY(-4px);
}

.pick-card.is-selected::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.pick-card--hendo.is-selected {
  box-shadow: 0 0 34px rgba(37, 191, 255, 0.52), inset 0 0 92px rgba(0, 175, 255, 0.22);
}

.pick-card--maddie.is-selected {
  box-shadow: 0 0 34px rgba(255, 112, 207, 0.48), inset 0 0 92px rgba(255, 108, 201, 0.24);
}

.pick-card--mega.is-selected {
  box-shadow: 0 0 34px rgba(184, 134, 255, 0.5), inset 0 0 92px rgba(145, 62, 255, 0.22);
}

.pick-card img {
  position: absolute;
  bottom: 88px;
  height: min(67%, 300px);
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.46));
}

.pick-card span,
.pick-card small {
  position: relative;
  z-index: 1;
}

.pick-card span {
  color: #fff;
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 1000;
  line-height: 0.94;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 16px #000;
}

.pick-card small {
  color: currentColor;
  margin-top: 8px;
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px #000;
}

.versus {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 54%),
    conic-gradient(from 130deg, rgba(44, 201, 255, 0.72), rgba(255, 58, 190, 0.76), rgba(44, 201, 255, 0.72));
  box-shadow:
    0 0 28px rgba(61, 195, 255, 0.56),
    0 0 38px rgba(255, 67, 197, 0.52),
    inset 0 0 34px rgba(0, 0, 0, 0.7);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 1000;
  color: #fff;
  font-style: italic;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.86), 0 0 36px rgba(255, 55, 198, 0.88);
}

#fightButton {
  min-width: min(330px, 72vw);
  min-height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 9px;
  background:
    linear-gradient(180deg, #fff66a 0%, #ffb315 48%, #ff7a11 100%);
  color: #1c1304;
  box-shadow:
    0 0 26px rgba(255, 198, 35, 0.8),
    0 13px 0 rgba(99, 35, 0, 0.56),
    0 28px 44px rgba(0, 0, 0, 0.52);
  font-size: clamp(29px, 4.1vw, 50px);
  font-style: italic;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.36);
}

.pause-screen {
  background: rgba(0, 0, 0, 0.58);
}

.menu-panel {
  display: grid;
  gap: 14px;
}

.menu-panel h1 {
  margin-bottom: 8px;
}

.message-screen {
  gap: 18px;
}

@media (max-width: 720px) {
  .title-actions {
    bottom: 18px;
  }

  .select-layout {
    grid-template-columns: 1fr 52px 1fr;
  }

  .pick-row {
    gap: 8px;
  }

  .pick-card {
    min-height: 230px;
    padding: 12px;
  }

  .pick-card img {
    bottom: 58px;
    height: 68%;
  }

  .level-row {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    gap: 6px;
  }

  .level-card,
  .level-card span {
    min-height: 54px;
  }

  button {
    min-width: 128px;
    min-height: 42px;
    font-size: 13px;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  body {
    display: block;
  }

  .shell {
    width: 100vw;
    height: 100svh;
    min-width: 0;
    min-height: 0;
  }

  .title-screen img {
    object-fit: cover;
  }

  body[data-screen="fight"] .mobile-controls {
    display: flex;
  }
}

@media (pointer: coarse) and (orientation: portrait), (max-width: 720px) and (orientation: portrait) {
  .screen {
    place-items: start center;
  }

  .select-screen {
    align-content: start;
    justify-content: center;
    gap: 12px;
    padding: max(18px, env(safe-area-inset-top)) 12px max(82px, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .select-screen h1 {
    font-size: clamp(30px, 9vw, 48px);
    line-height: 0.95;
    text-align: center;
  }

  .select-layout {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 460px);
  }

  .player-select {
    gap: 8px;
  }

  .player-select h2 {
    font-size: 20px;
  }

  .pick-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pick-card {
    min-height: 158px;
    padding: 10px;
    border-radius: 7px;
  }

  .pick-card img {
    bottom: 50px;
    height: 54%;
  }

  .pick-card span {
    font-size: clamp(15px, 5.4vw, 23px);
  }

  .pick-card small {
    margin-top: 4px;
    font-size: 10px;
  }

  .versus {
    display: none;
  }

  .level-select {
    width: min(100%, 460px);
    gap: 6px;
  }

  .level-select h2 {
    font-size: 17px;
  }

  .level-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
  }

  .level-card {
    flex: 0 0 132px;
    min-height: 58px;
    scroll-snap-align: start;
  }

  .level-card span {
    min-height: 58px;
    font-size: 11px;
  }

  #fightButton {
    position: sticky;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(260px, 72vw);
    min-height: 46px;
  }

  body[data-screen="fight"] .rotate-hint {
    display: grid;
    position: absolute;
    left: 50%;
    top: max(16px, env(safe-area-inset-top));
    z-index: 9;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    place-items: center;
    transform: translateX(-50%);
    background: rgba(4, 6, 12, 0.62);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: none;
  }
}

@media (pointer: coarse) and (orientation: landscape), (max-width: 900px) and (orientation: landscape) {
  .title-actions {
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .select-screen {
    gap: 6px;
    padding: 7px max(14px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }

  .select-screen h1 {
    font-size: clamp(26px, 7vh, 40px);
    line-height: 0.9;
  }

  .select-layout {
    grid-template-columns: minmax(230px, 1fr) 58px minmax(230px, 1fr);
    gap: 10px;
  }

  .player-select {
    gap: 5px;
  }

  .player-select h2 {
    font-size: clamp(18px, 5vh, 25px);
  }

  .pick-row {
    gap: 8px;
  }

  .pick-card {
    min-height: clamp(150px, 44vh, 190px);
    padding: 8px;
  }

  .pick-card img {
    bottom: 48px;
    height: 53%;
  }

  .pick-card span {
    font-size: clamp(18px, 5vh, 27px);
  }

  .pick-card small {
    margin-top: 3px;
    font-size: 9px;
  }

  .versus {
    font-size: clamp(36px, 12vh, 60px);
  }

  .level-select {
    gap: 4px;
  }

  .level-select h2 {
    font-size: 14px;
  }

  .level-row {
    gap: 7px;
  }

  .level-card,
  .level-card span {
    min-height: 42px;
  }

  .level-card span {
    font-size: 10px;
  }

  #fightButton {
    min-height: 34px;
    min-width: 132px;
    font-size: 12px;
  }

  .mobile-controls {
    bottom: max(8px, env(safe-area-inset-bottom));
  }

  .touch-cluster {
    gap: 7px;
  }

  .touch-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    font-size: 21px;
  }

  .touch-btn--jump {
    margin-bottom: 14px;
  }

  .touch-btn--small {
    width: 52px;
    min-width: 52px;
    font-size: 9px;
  }
}

@media (max-height: 520px) {
  .select-screen {
    gap: 8px;
    padding: 10px 18px;
  }

  .select-screen h1 {
    font-size: clamp(34px, 7vh, 46px);
    line-height: 0.9;
  }

  .player-select {
    gap: 7px;
  }

  .player-select h2 {
    font-size: clamp(21px, 5vh, 28px);
  }

  .pick-row {
    gap: 8px;
  }

  .pick-card {
    min-height: 206px;
    padding: 10px;
  }

  .pick-card img {
    bottom: 54px;
    height: 58%;
  }

  .level-select {
    gap: 5px;
  }

  .level-select h2 {
    font-size: 16px;
  }

  .level-row {
    gap: 6px;
  }

  .level-card,
  .level-card span {
    min-height: 46px;
  }

  .pick-card span {
    font-size: clamp(20px, 5vh, 28px);
  }

  .pick-card small {
    margin-top: 4px;
    font-size: 10px;
  }

  .versus {
    font-size: clamp(34px, 10vh, 54px);
  }

  #fightButton {
    min-height: 38px;
  }
}

@media (pointer: coarse) and (orientation: landscape), (max-width: 900px) and (orientation: landscape) {
  .select-screen {
    gap: 6px;
    padding: 7px max(14px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }

  .select-screen h1 {
    font-size: clamp(26px, 7vh, 40px);
  }

  .player-select h2 {
    font-size: clamp(18px, 5vh, 25px);
  }

  .pick-card {
    min-height: clamp(150px, 44vh, 190px);
    padding: 8px;
  }

  .pick-card img {
    bottom: 48px;
    height: 53%;
  }

  .level-card,
  .level-card span {
    min-height: 42px;
  }

  #fightButton {
    min-height: 34px;
  }
}
