:root {
  --gold: #ffd166;
  --gold-dim: #a3853f;
  --frame-edge: #5a4d36;
  --bg: #0d0b09;
  --health: #1fbf3a;
  --health-dark: #0f6d21;
  --swing: #c9a35c;
  --text: #e8dcc0;
  --text-dim: #9c9078;
  --melee: #ffffff;
  --holy: #ffe680;
  --miss: #b8b8b8;
  --error: #ff3b3b;
  --font-title: "Cinzel", "Georgia", serif;
  --font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-number: "Arial Black", "Impact", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  user-select: none;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(90, 70, 40, 0.25), transparent 60%),
    linear-gradient(180deg, #17130f 0%, #0d0b09 100%);
}

#arena {
  position: relative;
  width: 100%;
  height: min(100vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 170px 16px 28px;
}

/* ----- Target frame ----- */

#target-frame {
  position: relative;
  width: min(520px, 100%);
}

.unit-frame {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background: linear-gradient(180deg, #34302a, #1f1c18);
  border: 2px solid var(--frame-edge);
  border-radius: 8px;
  box-shadow: 0 0 0 1px #000, 0 8px 24px rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
  transform-origin: 50% 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.unit-frame.dying {
  opacity: 0;
  transform: translateY(60px) rotate(2deg) scale(0.96);
}

.unit-frame.spawning {
  animation: spawn-in 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes spawn-in {
  from { opacity: 0; transform: translateY(-24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.unit-level {
  align-self: center;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  background: radial-gradient(circle, #3a2c14 0%, #1a140a 70%);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  text-shadow: 0 1px 2px #000;
}

.unit-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.unit-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----- Bars ----- */

.bar {
  position: relative;
  height: 26px;
  background: #0b0a08;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  inset: 0;
  transform-origin: 0 50%;
  transform: scaleX(1);
  transition: transform 0.12s ease-out;
}

.health-bar .bar-fill {
  background: linear-gradient(180deg, #48e065 0%, var(--health) 45%, var(--health-dark) 100%);
}

.bar-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 3px #000;
  letter-spacing: 0.3px;
}

/* ----- Floating combat text ----- */

#float-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0;
  pointer-events: none;
  overflow: visible;
}

.float {
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 0 2px #000, 0 2px 0 #000, 0 -1px 0 #000, 2px 0 0 #000, -2px 0 0 #000;
  animation: float-up 1.4s ease-out forwards;
  will-change: transform, opacity;
}

.float.melee { color: var(--melee); }
.float.holy { color: var(--holy); }
.float.miss { color: var(--miss); font-size: 24px; font-weight: 700; }
.float.crit {
  font-size: 46px;
  animation: float-up-crit 1.6s ease-out forwards;
}

@keyframes float-up {
  0% { opacity: 0; transform: translate(-50%, 24px) scale(0.6); }
  10% { opacity: 1; transform: translate(-50%, 0) scale(1.1); }
  25% { transform: translate(-50%, -12px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -110px) scale(1); }
}

@keyframes float-up-crit {
  0% { opacity: 0; transform: translate(-50%, 24px) scale(0.5); }
  12% { opacity: 1; transform: translate(-50%, -4px) scale(1.35); }
  30% { transform: translate(-50%, -18px) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%, -120px) scale(1); }
}

/* ----- Error text ----- */

#error-text {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: var(--error);
  text-shadow: 0 1px 2px #000;
  pointer-events: none;
  animation: error-fade 1.6s ease-out forwards;
  white-space: nowrap;
}

@keyframes error-fade {
  0%, 60% { opacity: 1; }
  100% { opacity: 0; }
}

/* ----- Player area ----- */

#player-area {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

#buff-bar {
  display: flex;
  gap: 6px;
  min-height: 52px;
  align-self: flex-start;
}

.buff {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: 0 0 0 1px var(--gold-dim);
  animation: spawn-in 0.2s ease-out both;
}

.buff img {
  display: block;
  width: 100%;
  height: 100%;
}

.buff .buff-time {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-shadow: 0 1px 2px #000;
}

.buff.expiring { animation: buff-blink 0.6s linear infinite; }

@keyframes buff-blink {
  50% { opacity: 0.35; }
}

#swing-timer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.swing-icon {
  position: relative;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  flex: none;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 3px;
  background: #000;
  box-shadow: 0 0 0 1px var(--frame-edge);
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.15s ease;
}

.swing-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  filter: grayscale(1) brightness(0.55);
  transition: filter 0.15s ease;
}

.swing-icon .keybind {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
  pointer-events: none;
}

#swing-timer.attacking .swing-icon img { filter: none; }

#swing-timer.attacking .swing-icon {
  box-shadow: 0 0 0 1px var(--gold), 0 0 8px rgba(255, 209, 102, 0.5);
  animation: attack-pulse 1.2s ease-in-out infinite;
}

@keyframes attack-pulse {
  50% { box-shadow: 0 0 0 1px var(--gold), 0 0 14px rgba(255, 209, 102, 0.85); }
}

#swing-timer:not(.attacking) .swing-bar .bar-fill {
  background: linear-gradient(180deg, #8f8676 0%, #6b6357 50%, #3f3a33 100%);
}

.swing-bar {
  flex: 1;
  height: 22px;
}

.swing-bar .bar-fill {
  background: linear-gradient(180deg, #e8c77c 0%, var(--swing) 50%, #7d6236 100%);
  transition: none;
}

.swing-bar .bar-text {
  font-size: 12px;
  justify-items: end;
  padding-right: 8px;
}

/* ----- Hotbar ----- */

#hotbar {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, #2b2722, #17140f);
  border: 2px solid var(--frame-edge);
  border-radius: 10px;
  box-shadow: 0 0 0 1px #000, 0 10px 28px rgba(0, 0, 0, 0.7);
}

.slot {
  position: relative;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid #000;
  border-radius: 6px;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 0 1px #3a3128, inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.06s ease, box-shadow 0.12s ease;
  outline: none;
}

.slot:hover { box-shadow: 0 0 0 1px var(--gold-dim), 0 0 10px rgba(255, 209, 102, 0.35); }
.slot:active, .slot.pressed { transform: scale(0.94); }
.slot.active-seal { box-shadow: 0 0 0 2px var(--gold), 0 0 14px rgba(255, 209, 102, 0.6); }

.slot img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  pointer-events: none;
}

.slot .keybind {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  padding: 0 4px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px #000;
  pointer-events: none;
}

.slot .cooldown {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: conic-gradient(rgba(0, 0, 0, 0) calc(var(--p, 0) * 1turn), rgba(0, 0, 0, 0.75) 0);
  pointer-events: none;
  opacity: 0;
}

.slot.on-cooldown .cooldown { opacity: 1; }

.slot .cd-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-number);
  font-size: 22px;
  color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 4px #000;
  pointer-events: none;
  opacity: 0;
}

.slot.on-cooldown .cd-text { opacity: 1; }

.slot.flash::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  animation: slot-flash 0.35s ease-out forwards;
  pointer-events: none;
}

@keyframes slot-flash {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.18); }
}

/* ----- Stats ----- */

#stats {
  position: absolute;
  top: 16px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text);
  text-align: right;
  text-shadow: 0 1px 2px #000;
}

.stat-label {
  color: var(--text-dim);
  margin-right: 4px;
}

/* ----- Tooltip ----- */

#tooltip {
  position: fixed;
  z-index: 10;
  width: 280px;
  padding: 10px 12px;
  background: rgba(10, 8, 20, 0.95);
  border: 1px solid #6e6a8a;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  line-height: 1.35;
  pointer-events: none;
}

#tooltip .tt-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

#tooltip .tt-rank {
  float: right;
  color: var(--text-dim);
  font-size: 12px;
}

#tooltip .tt-meta {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin: 3px 0;
}

#tooltip .tt-desc {
  color: var(--gold);
  margin-top: 6px;
}

.hidden { display: none; }

/* ----- Buff extras ----- */

.buff .buff-stacks {
  position: absolute;
  right: 1px;
  bottom: 0;
  font-family: var(--font-number);
  font-size: 13px;
  color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 3px #000;
}

.buff .buff-badge {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 2px;
}

/* ----- Target debuffs ----- */

.debuff-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 30px;
}

.debuff {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #b23a2a;
  animation: spawn-in 0.2s ease-out both;
}

.debuff img {
  display: block;
  width: 100%;
  height: 100%;
}

.debuff .debuff-time {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-number);
  font-size: 13px;
  color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 3px #000;
}

.float.status {
  color: #ff9a3c;
  font-size: 26px;
  font-weight: 700;
}

/* ----- Talent panel ----- */

#talents {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 250px;
  padding: 12px;
  background: linear-gradient(180deg, #2b2722, #17140f);
  border: 2px solid var(--frame-edge);
  border-radius: 10px;
  box-shadow: 0 0 0 1px #000, 0 10px 28px rgba(0, 0, 0, 0.7);
}

.talent-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.talent-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  text-shadow: 0 1px 2px #000;
}

.talent-points {
  font-size: 12px;
  color: var(--text-dim);
}

.talent-tree {
  margin: 6px 0 3px;
  padding-bottom: 2px;
  border-bottom: 1px solid #3a3128;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.talent {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 0;
}

.talent-icon {
  position: relative;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  flex: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 2px solid #000;
  border-radius: 5px;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 0 1px #3a3128;
  outline: none;
  transition: box-shadow 0.12s ease, transform 0.06s ease;
}

.talent-icon:hover { box-shadow: 0 0 0 1px var(--gold-dim), 0 0 8px rgba(255, 209, 102, 0.35); }
.talent-icon:active { transform: scale(0.94); }

.talent-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  filter: grayscale(1) brightness(0.55);
  transition: filter 0.15s ease;
  pointer-events: none;
}

.talent.learned .talent-icon img { filter: none; }
.talent.learned .talent-icon { box-shadow: 0 0 0 1px #2f9a3a; }
.talent.maxed .talent-icon { box-shadow: 0 0 0 1px var(--gold); }

.talent-rank {
  position: absolute;
  right: -4px;
  bottom: -5px;
  padding: 0 4px;
  border: 1px solid #000;
  border-radius: 3px;
  background: #1a1612;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: var(--text-dim);
  pointer-events: none;
}

.talent.learned .talent-rank { color: #5ee36e; }
.talent.maxed .talent-rank { color: var(--gold); }

.talent-body {
  min-width: 0;
}

.talent-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.talent-summary {
  font-size: 11px;
  color: var(--text-dim);
}

.talent.learned .talent-summary { color: #8fd48f; }

#talent-reset {
  margin-top: 8px;
  width: 100%;
  padding: 5px 0;
  border: 1px solid var(--frame-edge);
  border-radius: 4px;
  background: #1f1b16;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 12px;
  cursor: pointer;
}

#talent-reset:hover { color: var(--text); border-color: var(--gold-dim); }

#tooltip .tt-next {
  margin-top: 6px;
  color: #fff;
}

#tooltip .tt-hint {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-dim);
}

/* ----- Toggles ----- */

#toggles {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

#player-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-dim);
  text-shadow: 0 1px 2px #000;
}

.toggle-label:hover { color: var(--text); }

.toggle-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label .switch {
  position: relative;
  width: 34px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 9px;
  background: #1a1612;
  box-shadow: 0 0 0 1px var(--frame-edge), inset 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.toggle-label .switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d9c9a6, #8f7d57);
  box-shadow: 0 1px 2px #000;
  transition: transform 0.15s ease, background 0.15s ease;
}

.toggle-label input:checked + .switch {
  background: #4a3a15;
  box-shadow: 0 0 0 1px var(--gold-dim), 0 0 8px rgba(255, 209, 102, 0.35), inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.toggle-label input:checked + .switch::after {
  transform: translateX(16px);
  background: linear-gradient(180deg, #fff0b8, var(--gold));
}

.toggle-label input:checked ~ .toggle-text { color: var(--gold); }

.toggle-label input:focus-visible + .switch { box-shadow: 0 0 0 2px var(--gold); }

.slot .macro-badge {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: 0 0 0 1px var(--gold-dim);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

#hotbar.macro-on .slot .macro-badge {
  opacity: 1;
  transform: scale(1);
}

.slot .macro-badge.stop {
  box-shadow: 0 0 0 1px #c0392b;
  filter: grayscale(1) brightness(0.8);
}

.slot .macro-stop-mark {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 44%, #ff3b3b 46%, #ff3b3b 54%, transparent 56%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#hotbar.macro-on .slot .macro-stop-mark { opacity: 1; }

/* ----- Character panel ----- */

#character {
  position: absolute;
  left: 24px;
  bottom: 28px;
  width: 250px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #2b2722, #17140f);
  border: 2px solid var(--frame-edge);
  border-radius: 10px;
  box-shadow: 0 0 0 1px #000, 0 10px 28px rgba(0, 0, 0, 0.7);
  font-size: 12px;
}

.char-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.char-row:last-child { border-bottom: 0; }

.char-row .stat-value {
  color: var(--text);
  font-weight: 600;
  text-shadow: 0 1px 2px #000;
}

/* ----- DPS graph and damage meter ----- */

#bottom-right {
  position: absolute;
  right: 18px;
  bottom: 28px;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#dps-graph,
#damage-meter {
  padding: 10px 12px;
  background: linear-gradient(180deg, #2b2722, #17140f);
  border: 2px solid var(--frame-edge);
  border-radius: 10px;
  box-shadow: 0 0 0 1px #000, 0 10px 28px rgba(0, 0, 0, 0.7);
}

#dps-canvas {
  display: block;
  width: 100%;
  height: 96px;
  cursor: crosshair;
}

.meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.meter-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  text-shadow: 0 1px 2px #000;
}

.meter-total {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-shadow: 0 1px 2px #000;
}

.meter-empty {
  font-size: 12px;
  color: var(--text-dim);
  padding: 2px 0;
}

.meter-row {
  position: relative;
  height: 18px;
  margin: 2px 0;
  border: 1px solid #000;
  border-radius: 3px;
  background: #0b0a08;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.meter-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0.85;
  transition: width 0.2s ease-out;
}

.meter-name,
.meter-value {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 3px #000;
  white-space: nowrap;
}

.meter-name {
  flex: 1;
  padding-left: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meter-value {
  padding-right: 6px;
}

.meter-pct {
  color: rgba(255, 255, 255, 0.75);
  margin-left: 2px;
}

/* ----- Narrow screens -----
   Below the width the two side columns need, the arena becomes one
   scrolling column: the target and action bar first, then the counters,
   the DPS graph and damage meter, the talents, and the character panel. */

@media (max-width: 1100px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow: auto;
  }

  body {
    display: block;
  }

  #arena {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    gap: 24px;
  }

  #target-frame { order: 0; }
  #player-area { order: 1; }
  #stats { order: 2; }
  #bottom-right { order: 3; }
  #talents { order: 4; }
  #character { order: 5; }

  #stats,
  #bottom-right,
  #talents,
  #character {
    position: static;
    width: min(520px, 100%);
  }

  #stats {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 4px;
  }

  #error-text {
    top: 190px;
  }
}

@media (max-width: 480px) {
  #hotbar {
    gap: 6px;
    padding: 8px;
  }

  .slot {
    width: 50px;
    height: 50px;
  }

  #stats {
    gap: 14px;
    font-size: 12px;
  }
}
