:root {
  --bg: #300036;
  --panel: rgba(89, 15, 88, 0.9);
  --panel-2: rgba(67, 8, 78, 0.96);
  --line: rgba(255, 190, 232, 0.26);
  --gold: #ffd860;
  --gold-2: #ffab1f;
  --pink: #ff60bc;
  --pink-2: #ca2f8b;
  --green: #69f24f;
  --green-2: #11aa02;
  --cyan: #92f4ff;
  --text: #fff2fe;
  --muted: rgba(255, 236, 251, 0.74);
  --shadow: 0 18px 40px rgba(31, 0, 33, 0.44);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 110, 194, 0.18), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(255, 204, 100, 0.16), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(114, 229, 255, 0.14), transparent 16%),
    linear-gradient(180deg, #5b0c67 0%, #2d0038 58%, #18001f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 207, 96, 0.18), transparent 16%),
    radial-gradient(circle at 82% 12%, rgba(255, 97, 188, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%, rgba(0, 0, 0, 0.14));
}

button {
  font: inherit;
  border: 0;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}

.launch-note,
.orientation-note {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(37, 4, 48, 0.84);
  border: 1px solid rgba(255, 214, 104, 0.24);
  box-shadow: var(--shadow);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffe8ac;
  font-size: 0.92rem;
}

.launch-note a {
  color: var(--cyan);
  font-weight: 800;
}

.orientation-note {
  display: none;
  color: #ffe8ac;
  font-family: "Baloo 2", cursive;
}

.game-stage {
  width: min(calc(100vw - 24px), calc((100vh - 24px) * 16 / 9));
  aspect-ratio: 16 / 9;
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 8px;
  overflow: hidden;
  border-radius: 32px;
  padding: 10px 10px 84px;
  background: linear-gradient(180deg, rgba(127, 26, 153, 0.72), rgba(85, 8, 88, 0.94));
  box-shadow: 0 30px 80px rgba(17, 0, 19, 0.48);
}

.scene-backdrop,
.scene-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-backdrop {
  background:
    linear-gradient(180deg, rgba(113, 14, 113, 0.26), rgba(81, 7, 86, 0.9)),
    radial-gradient(circle at 50% 10%, rgba(255, 96, 188, 0.24), transparent 18%),
    linear-gradient(180deg, rgba(253, 174, 255, 0.06), rgba(255, 255, 255, 0) 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 9.5%);
  opacity: 0.95;
}

.scene-lights {
  background:
    radial-gradient(circle at 0 50%, rgba(255, 203, 91, 0.4), transparent 12%),
    radial-gradient(circle at 100% 54%, rgba(255, 203, 91, 0.4), transparent 12%);
}

.hud-layer,
.category-rail,
.lobby-floor,
.status-panel,
.dock-bar,
.modal-backdrop {
  position: relative;
  z-index: 1;
}

.hud-layer {
  display: grid;
  gap: 8px;
}

.player-hud {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: center;
}

.avatar-button {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.avatar-ring,
.avatar-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.avatar-ring {
  border: 6px solid var(--gold-2);
  box-shadow: 0 0 0 5px rgba(91, 8, 101, 0.96);
}

.avatar-core {
  inset: 8px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 40% 34%, #ffd2a9 0 18%, transparent 19%),
    radial-gradient(circle at 62% 36%, #ffd2a9 0 18%, transparent 19%),
    radial-gradient(circle at 50% 64%, #ef9d70 0 16%, transparent 17%),
    linear-gradient(145deg, #372a45, #6d2d1d);
  font-size: 0;
}

.resource-bar,
.identity-bar,
.category-rail,
.dock-bar {
  display: flex;
  align-items: center;
}

.resource-bar {
  gap: 8px;
}

.resource-pill,
.hud-pill,
.icon-orb,
.identity-pill,
.ticker-panel,
.jackpot-pill,
.category-button,
.control-pill,
.mission-panel,
.status-panel,
.dock-bar,
.game-card,
.promo-frame,
.machine-wall {
  border: 2px solid rgba(97, 0, 100, 0.84);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.14), var(--shadow);
}

.resource-pill {
  min-height: 56px;
  padding: 8px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #b533e6, #7618b1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-pill.coins {
  min-width: 220px;
}

.resource-pill.level {
  min-width: 150px;
}

.resource-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 35%, #fff7b9, #ffcc25 72%);
  color: #bc6600;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
}

.resource-copy {
  display: grid;
}

.resource-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--muted);
}

.resource-copy strong,
.identity-pill strong,
.jackpot-pill strong {
  font-family: "Baloo 2", cursive;
  letter-spacing: 0.02em;
}

.resource-copy strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hud-pill,
.icon-orb,
.identity-pill,
.category-button,
.control-pill,
.dock-item,
.game-card,
.modal-button,
.modal-close {
  cursor: pointer;
}

.hud-pill {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.hud-pill.buy {
  background: linear-gradient(180deg, var(--green), var(--green-2));
}

.hud-pill.sale {
  background: linear-gradient(180deg, #ff7ad8, #db1fb2);
}

.icon-orb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d45cff, #7f1cbf);
  color: #fff;
  font-size: 1.35rem;
}

.identity-bar {
  display: grid;
  grid-template-columns: 190px 1fr 210px;
  gap: 10px;
}

.identity-pill,
.ticker-panel,
.jackpot-pill {
  min-height: 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(107, 18, 108, 0.96), rgba(70, 10, 76, 0.96));
}

.identity-pill {
  padding: 8px 14px;
  color: #fff;
  display: grid;
  justify-items: start;
}

.identity-pill strong {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.ticker-panel {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  overflow: hidden;
}

.ticker-badge {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff6bb6, #d93683);
  font-family: "Baloo 2", cursive;
  color: #fff;
}

.ticker-track {
  overflow: hidden;
  padding: 0 16px;
}

.ticker-text {
  white-space: nowrap;
  font-weight: 800;
}

.jackpot-pill {
  padding: 7px 14px;
  display: grid;
  justify-items: start;
}

.jackpot-pill strong {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.category-rail {
  gap: 8px;
  margin-top: 0;
  padding: 6px;
  border-radius: 18px;
  background: rgba(87, 9, 84, 0.78);
  overflow-x: auto;
}

.category-button {
  flex: 1 0 138px;
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(118, 23, 112, 0.96), rgba(84, 14, 81, 0.96));
  color: #ffd1ef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 12px;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  white-space: nowrap;
}

.category-button.active {
  background: linear-gradient(180deg, #ff69a6, #d93d86);
  color: #fff;
}

.category-icon {
  font-size: 1.3em;
}

.lobby-floor {
  margin-top: 0;
  display: grid;
  grid-template-columns: 0.92fr 2.08fr;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

.promo-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
}

.promo-cabinet,
.machine-wall {
  min-height: 0;
}

.promo-frame {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(102, 30, 214, 0.92), rgba(0, 116, 255, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 0 0 4px rgba(82, 13, 119, 0.88),
    0 0 0 6px rgba(97, 232, 255, 0.88),
    0 0 20px rgba(91, 223, 255, 0.66),
    var(--shadow);
}

.promo-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 92%, rgba(255, 188, 66, 0.36), transparent 24%),
    linear-gradient(180deg, #15104b 0%, #04103d 100%);
}

.promo-copy {
  position: absolute;
  inset: 20px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-kicker,
.promo-copy h1,
.promo-reward {
  margin: 0;
}

.promo-kicker {
  font-family: "Baloo 2", cursive;
  font-size: 1.9rem;
  line-height: 0.95;
  color: #ffd461;
  text-shadow: 0 3px 0 #8c0f73;
}

.promo-copy h1 {
  max-width: 7ch;
  font-size: 2.45rem;
  line-height: 0.95;
}

.promo-reward {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd960, #ff9d12);
  color: #8a2a00;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
}

.mission-panel {
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(90, 12, 95, 0.92), rgba(63, 8, 77, 0.96));
  display: grid;
  gap: 8px;
}

.mission-row {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
}

.mission-row span {
  color: var(--muted);
}

.mission-row strong {
  font-family: "Baloo 2", cursive;
  color: var(--gold);
  font-size: 1.05rem;
}

.machine-wall {
  border-radius: 22px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(108, 18, 100, 0.92), rgba(81, 10, 80, 0.96));
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}

.wall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wall-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.wall-header h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
}

.wall-controls {
  display: flex;
  gap: 8px;
}

.control-pill {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  color: #fff;
  font-weight: 800;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  min-height: 0;
}

.game-card {
  min-height: 210px;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.08);
}

.game-card.hidden {
  display: none;
}

.card-art {
  position: relative;
  min-height: 152px;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  background: var(--card-bg, linear-gradient(180deg, #ff7d31, #61295d));
}

.card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(255, 228, 114, 0.26), transparent 18%),
    linear-gradient(180deg, transparent 30%, rgba(66, 0, 58, 0.28) 100%);
}

.card-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 1;
  padding: 6px 12px 5px;
  border-radius: 0 0 14px 0;
  font-family: "Baloo 2", cursive;
  font-size: 0.95rem;
  color: #fff9e2;
  background: linear-gradient(180deg, #ff9831, #df4c0d);
}

.card-badge.new {
  background: linear-gradient(180deg, #75f54e, #10a900);
}

.card-symbol,
.card-title,
.card-meta {
  position: relative;
  z-index: 1;
}

.card-symbol {
  font-size: 3.55rem;
  line-height: 1;
}

.card-title {
  margin: 6px 0 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  line-height: 0.95;
  text-shadow: 0 3px 0 rgba(98, 0, 54, 0.44);
}

.card-footer {
  min-height: 48px;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(121, 21, 114, 0.96), rgba(84, 15, 78, 0.98));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-meta {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffd7f7;
}

.card-enter {
  min-width: 66px;
  min-height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #7d2700;
  font-family: "Baloo 2", cursive;
  font-size: 0.9rem;
}

.status-panel {
  margin-top: 0;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(94, 12, 92, 0.92), rgba(62, 8, 74, 0.96));
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-chip {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #7d2700;
  font-family: "Baloo 2", cursive;
}

.status-copy {
  font-weight: 800;
  color: #ffe9fa;
  font-size: 0.92rem;
}

.dock-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(131, 30, 151, 0.95), rgba(84, 7, 97, 0.96));
}

.dock-item {
  flex: 1;
  min-height: 60px;
  border-radius: 14px;
  background: transparent;
  color: #fff5fd;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  font-family: "Baloo 2", cursive;
  font-size: 0.86rem;
}

.dock-item.active {
  background: linear-gradient(180deg, rgba(255, 214, 102, 0.18), rgba(255, 214, 102, 0.06));
}

.dock-icon {
  font-size: 1.2rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 0, 22, 0.7);
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop.hidden {
  display: none;
}

.game-modal {
  width: min(720px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(101, 16, 110, 0.98), rgba(64, 8, 73, 1));
  border: 2px solid rgba(255, 199, 109, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
}

.modal-art {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 125, 41, 0.96), rgba(103, 44, 96, 0.96));
}

.modal-symbol {
  font-size: 7rem;
  filter: drop-shadow(0 8px 18px rgba(66, 0, 58, 0.32));
}

.modal-body {
  padding: 26px 24px 24px;
  display: grid;
  gap: 18px;
}

.modal-topline,
.modal-stats,
.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-badge,
.modal-category {
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "Baloo 2", cursive;
}

.modal-badge {
  background: linear-gradient(180deg, #ff9930, #de4b0b);
  color: #fff;
}

.modal-badge.new {
  background: linear-gradient(180deg, #75f54e, #10a900);
}

.modal-category {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd6f0;
}

.modal-body h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 2.2rem;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-stats {
  justify-content: space-between;
  align-items: stretch;
}

.modal-stats div {
  flex: 1;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 4px;
}

.modal-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.modal-stats strong {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
}

.modal-actions {
  justify-content: flex-end;
}

.modal-button {
  min-width: 120px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
}

.modal-button.primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #7d2700;
}

.modal-button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 1200px) {
  .lobby-floor {
    grid-template-columns: 0.84fr 2.16fr;
  }

  .machine-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .game-stage {
    width: min(calc(100vw - 18px), calc((100vh - 18px) * 16 / 9));
    padding-bottom: 88px;
  }

  .player-hud {
    grid-template-columns: 82px 1fr;
  }

  .avatar-button {
    width: 78px;
    height: 78px;
  }

  .resource-pill.coins,
  .resource-pill.level,
  .identity-bar {
    min-width: 0;
  }

  .resource-bar,
  .identity-bar {
    gap: 8px;
  }

  .identity-bar {
    grid-template-columns: 180px 1fr 190px;
  }

  .category-button {
    flex-basis: 122px;
    font-size: 1.22rem;
  }

  .machine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dock-bar {
    overflow-x: auto;
  }

  .dock-item {
    min-width: 96px;
  }
}

@media (max-width: 720px) {
  .orientation-note {
    display: inline-flex;
  }

  .game-stage {
    width: min(calc(100vw - 12px), calc((100vh - 12px) * 16 / 9));
    border-radius: 22px;
    padding: 8px 8px 78px;
  }

  .launch-note {
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .player-hud {
    grid-template-columns: 62px 1fr;
    gap: 8px;
  }

  .avatar-button {
    width: 58px;
    height: 58px;
  }

  .resource-pill,
  .hud-pill,
  .identity-pill,
  .ticker-panel,
  .jackpot-pill {
    min-height: 42px;
    border-radius: 16px;
  }

  .resource-pill {
    padding: 6px 10px;
  }

  .resource-pill.coins {
    min-width: 132px;
  }

  .resource-pill.level {
    min-width: 102px;
  }

  .resource-copy strong,
  .identity-pill strong,
  .jackpot-pill strong {
    font-size: 1rem;
  }

  .resource-label,
  .wall-label,
  .modal-stats span {
    font-size: 0.62rem;
  }

  .resource-icon,
  .icon-orb {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .hud-pill {
    padding: 0 12px;
    font-size: 1.1rem;
  }

  .identity-bar {
    grid-template-columns: 130px 1fr 134px;
    gap: 6px;
  }

  .ticker-panel {
    grid-template-columns: 52px 1fr;
  }

  .category-rail {
    gap: 6px;
    padding: 6px;
  }

  .category-button {
    min-height: 52px;
    flex-basis: 98px;
    font-size: 0.94rem;
    gap: 6px;
  }

  .lobby-floor {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-stack {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .promo-frame {
    min-height: 180px;
  }

  .promo-copy {
    inset: 18px;
  }

  .promo-kicker {
    font-size: 1.3rem;
  }

  .promo-copy h1 {
    font-size: 1.7rem;
  }

  .promo-reward {
    font-size: 1.3rem;
  }

  .mission-panel {
    padding: 10px;
  }

  .mission-row {
    min-height: 42px;
    padding: 0 10px;
  }

  .wall-header h2 {
    font-size: 1.25rem;
  }

  .control-pill {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .machine-grid {
    gap: 8px;
  }

  .game-card {
    min-height: 160px;
    border-radius: 16px;
  }

  .card-art {
    min-height: 118px;
    padding: 10px;
  }

  .card-symbol {
    font-size: 2.6rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-badge,
  .card-meta,
  .card-enter,
  .dock-item,
  .status-chip,
  .status-copy {
    font-size: 0.76rem;
  }

  .card-footer {
    min-height: 42px;
    padding: 8px 10px;
  }

  .card-enter {
    min-width: 56px;
    min-height: 28px;
  }

  .status-panel {
    min-height: 42px;
    padding: 8px 10px;
    gap: 8px;
  }

  .dock-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    padding: 8px;
  }

  .dock-item {
    min-width: 72px;
    min-height: 54px;
  }

  .dock-icon {
    font-size: 1rem;
  }

  .game-modal {
    grid-template-columns: 1fr;
  }

  .modal-art {
    min-height: 160px;
  }

  .modal-symbol {
    font-size: 4rem;
  }

  .modal-body {
    padding: 18px;
    gap: 14px;
  }

  .modal-body h3 {
    font-size: 1.4rem;
  }

  .modal-stats {
    gap: 8px;
  }

  .modal-stats strong {
    font-size: 1rem;
  }

  .modal-button {
    min-width: 90px;
    min-height: 38px;
    font-size: 0.92rem;
  }
}
