:root {
  --water-top: #4fa8b8;
  --water-deep: #1a4f5c;
  --sand: #e8d5b5;
  --accent: #f4a582;
  --accent-dark: #e08a66;
  --coin: #f2c94c;
  --pearl: #e8e0ff;
  --panel-cream: #fff8ee;
  --text: #1a4f5c;
  --text-muted: #5d7a82;
  --radius: 16px;
  --nav-height: 72px;
  --top-bar-height: 56px;
  --tank-hud-height: auto;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body,
#root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #0f3540;
}

.app-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
  height: 100dvh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    'topbar'
    'tank'
    'nav';
  background: linear-gradient(180deg, #1a4f5c 0%, #0f3540 100%);
  overflow: hidden;
}

.game-canvas-host {
  position: absolute;
  inset: 0;
}

.game-canvas-host canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  touch-action: manipulation;
}

.tank-wrap {
  grid-area: tank;
  position: relative;
  min-height: 0;
  z-index: 5;
  overflow: hidden;
}

.tank-side-controls {
  position: absolute;
  top: 10px;
  right: 8px;
  z-index: 14;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.tank-orb {
  position: relative;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform 0.12s ease, filter 0.12s ease;
  filter: drop-shadow(0 4px 9px rgba(15, 53, 64, 0.34));
}

.tank-orb:active {
  transform: scale(0.92);
}

.tank-orb.active {
  filter:
    drop-shadow(0 0 9px rgba(244, 165, 130, 0.85))
    drop-shadow(0 5px 10px rgba(15, 53, 64, 0.32));
}

.tank-orb--image {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.tank-orb--image.active {
  background: transparent;
}

.tank-orb--image .tank-orb-icon img {
  filter: drop-shadow(0 4px 10px rgba(15, 53, 64, 0.28));
}

.tank-orb--image .tank-orb-ring-bg {
  stroke: rgba(255, 248, 238, 0.28);
}

.tank-orb--image .tank-orb-ring-fill {
  stroke-width: 4.5;
  filter: drop-shadow(0 1px 2px rgba(15, 53, 64, 0.28));
}

.tank-orb-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tank-orb-ring-bg {
  fill: none;
  stroke: rgba(255, 248, 238, 0.28);
  stroke-width: 3.5;
}

.tank-orb-ring-fill {
  fill: none;
  stroke-width: 4.5;
  stroke-linecap: round;
  filter: drop-shadow(0 1px 2px rgba(15, 53, 64, 0.35));
}

.tank-orb-ring-fill--teal {
  stroke: #2d9cdb;
}

.tank-orb-ring-fill--orange {
  stroke: #f4a582;
}

.tank-orb-ring-fill--gold {
  stroke: #f2c94c;
}

.tank-orb-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tank-orb-icon img {
  object-fit: contain;
}

.tank-orb-label {
  position: absolute;
  bottom: -1px;
  right: -3px;
  min-width: 21px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: #1a4f5c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(15, 53, 64, 0.28);
}

.tank-orb-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e74c3c;
  border: 2px solid rgba(255, 248, 238, 0.95);
  z-index: 3;
  animation: badge-pulse 1.4s ease-in-out infinite;
}

.tank-orb--image .tank-orb-badge {
  top: 3px;
  right: 3px;
}

.tank-maintenance-anchor {
  position: relative;
  pointer-events: none;
}

.tank-maintenance-menu {
  position: absolute;
  right: 58px;
  bottom: 0;
  width: min(246px, calc(100vw - 24px));
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(15, 53, 64, 0.24);
  pointer-events: auto;
}

.tank-maintenance-item {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.tank-maintenance-item:active {
  transform: scale(0.98);
}

.tank-maintenance-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 168, 184, 0.13);
}

.tank-maintenance-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}

.tank-maintenance-copy strong {
  font-size: 13px;
}

.tank-maintenance-copy span {
  color: var(--text-muted);
  font-weight: 700;
}

.water-change-dock {
  position: absolute;
  left: 10px;
  top: 72px;
  z-index: 16;
  width: 88px;
  min-height: 112px;
  padding: 8px 8px 10px;
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(15, 53, 64, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: auto;
}

.water-change-cancel-btn {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff8ee;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(15, 53, 64, 0.2);
}

.water-change-cancel-btn:active {
  transform: translateY(1px);
}

.timed-challenge-panel {
  position: absolute;
  right: 68px;
  top: 82px;
  z-index: 18;
  width: min(300px, calc(100% - 92px));
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.96);
  border: 2px solid rgba(242, 201, 76, 0.78);
  box-shadow: 0 12px 34px rgba(15, 53, 64, 0.28);
  pointer-events: auto;
}

.timed-challenge-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 79, 92, 0.08);
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.timed-challenge-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 28px;
}

.timed-challenge-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timed-challenge-head strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.timed-challenge-head span {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.24);
  color: #8a6500;
  font-size: 12px;
  font-weight: 900;
}

.timed-challenge-panel p {
  margin: 9px 0 10px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-muted);
  font-weight: 700;
}

.timed-challenge-progress-row,
.timed-challenge-reward {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.timed-challenge-progress-row span {
  color: var(--text-muted);
}

.timed-challenge-progress {
  height: 10px;
  margin: 6px 0 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(26, 79, 92, 0.12);
}

.timed-challenge-progress div {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4fa8b8 0%, #f2c94c 100%);
  transition: width 0.18s ease;
}

.timed-challenge-reward {
  justify-content: flex-start;
  color: #8a6500;
}

.timed-challenge-claim {
  width: 100%;
  height: 36px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: #f2c94c;
  color: #5f4300;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(120, 86, 0, 0.18);
}

.timed-challenge-claim:disabled {
  background: rgba(26, 79, 92, 0.12);
  color: var(--text-muted);
  cursor: default;
  box-shadow: none;
}

.water-change-dock--catching,
.water-change-dock--returning {
  animation: service-pulse 1.1s ease-in-out infinite;
}

.water-change-dock-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.water-change-dock-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
}

.water-change-dock-copy span {
  color: var(--accent-dark);
}

.water-change-exchange-btn {
  width: 100%;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f2c94c;
  color: #5f4300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(120, 86, 0, 0.18);
}

@keyframes service-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 24px rgba(15, 53, 64, 0.2);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(242, 201, 76, 0.36);
  }
}

.tank-wrap.tool-active,
.tank-wrap.tool-active .game-canvas-host canvas {
  cursor: none;
  touch-action: none;
}

.top-bar {
  grid-area: topbar;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: calc(8px + var(--safe-top)) 14px 8px;
  min-height: var(--top-bar-height);
  background: linear-gradient(180deg, #2d7a8a 0%, #1f5f6d 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.game-logo {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.03em;
}

.stat-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 252, 245, 0.95);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  min-width: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.stat-bar-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex: 0 0 auto;
}

.stat-bar-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.game-icon {
  object-fit: contain;
  object-position: center;
  display: block;
  flex: 0 0 auto;
  user-select: none;
  pointer-events: none;
}

.bottom-nav {
  grid-area: nav;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: calc(var(--nav-height) + var(--safe-bottom));
  padding: 7px 8px var(--safe-bottom);
  background:
    linear-gradient(180deg, rgba(255, 231, 145, 0.72) 0%, rgba(197, 126, 47, 0.38) 100%),
    url('/assets/ui/tank-sand-floor.png') center 36% / cover no-repeat,
    #dcae55;
  border-top: 1px solid rgba(255, 226, 127, 0.62);
  box-shadow:
    inset 0 10px 20px rgba(255, 235, 159, 0.34),
    0 -8px 22px rgba(26, 79, 92, 0.16);
  overflow: hidden;
}

.bottom-nav::before {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: -10px;
  height: 22px;
  border-radius: 0 0 50% 50%;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(255, 248, 198, 0.78) 0 28%, transparent 30%),
    radial-gradient(ellipse at 58% 100%, rgba(255, 238, 155, 0.7) 0 34%, transparent 36%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 226, 127, 0.72) 0 28%, transparent 30%);
  opacity: 0.8;
  pointer-events: none;
}

.nav-btn {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  justify-content: center;
  margin: 0 2px;
  padding: 7px 4px 6px;
  border: none;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 238, 168, 0.22), rgba(149, 86, 35, 0.08)),
    rgba(255, 232, 151, 0.16);
  color: #4c6b68;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  min-height: 48px;
  text-shadow: 0 1px 0 rgba(255, 245, 190, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 190, 0.48),
    inset 0 -4px 8px rgba(121, 72, 30, 0.12);
  transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.nav-btn:active {
  transform: scale(0.94);
}

.nav-btn.active {
  color: #123f48;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 252, 220, 0.72) 0%, rgba(255, 235, 141, 0.36) 58%, transparent 70%),
    rgba(255, 235, 154, 0.34);
  box-shadow:
    inset 0 2px 4px rgba(93, 58, 24, 0.18),
    inset 0 -1px 0 rgba(255, 250, 214, 0.62),
    0 2px 0 rgba(255, 247, 199, 0.18);
}

.nav-btn.active .game-icon {
  filter: drop-shadow(0 3px 4px rgba(94, 55, 20, 0.24));
}

.nav-btn-icon-wrap {
  position: relative;
  display: inline-flex;
}

.nav-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e74c3c;
  border: 2px solid #ffe9a8;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.7);
  animation: badge-pulse 1.4s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.tank-hud {
  grid-area: hud;
  position: relative;
  z-index: 12;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 12px 8px;
  pointer-events: none;
  flex-shrink: 0;
}

.tank-hud--hidden {
  display: none;
}

.tank-hud-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.tank-hud-left > * {
  pointer-events: auto;
}

.tank-actions {
  pointer-events: auto;
}

.active-goal-card {
  background: rgba(255, 248, 238, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 4px 16px rgba(26, 79, 92, 0.12);
  pointer-events: auto;
}

.active-goal-card--claimable {
  border-color: #f4a582;
  box-shadow: 0 4px 18px rgba(244, 165, 130, 0.35);
}

.active-goal-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.active-goal-title {
  font-weight: 700;
  font-size: 14px;
}

.active-goal-desc {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.active-goal-reward,
.active-goal-claim {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
}

.active-goal-claim {
  padding: 4px 10px;
  font-size: 11px;
}

.active-goal-progress-bar {
  display: none;
}

@media (min-width: 400px) {
  .active-goal-progress-bar {
    display: block;
    margin-top: 4px;
  }

  .active-goal-progress {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
  }
}

.quest-card--claimable {
  border-color: #f4a582;
}

.quest-claim-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  margin-right: 6px;
  vertical-align: middle;
  animation: badge-pulse 1.4s ease-in-out infinite;
}

.sell-btn-highlight {
  position: relative;
}

.sell-profit-badge {
  margin-left: 6px;
  font-size: 11px;
  background: #27ae60;
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
}

.screen-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--top-bar-height) + var(--safe-top));
  bottom: calc(var(--nav-height) + var(--safe-bottom));
  z-index: 15;
  background: linear-gradient(180deg, #e8f6f8 0%, #fff8ee 35%, #fff8ee 100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: slideUp 0.25s ease-out;
  padding-bottom: 16px;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.screen-sub {
  padding: 0 16px 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.tab-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(26, 79, 92, 0.1);
  background: #fff;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  min-height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
  color: #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 24px;
}

.shop-capacity-banner {
  margin: 0 16px 12px;
  padding: 10px 12px;
  border: 2px solid rgba(26, 79, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-capacity-banner.full {
  border-color: rgba(244, 165, 130, 0.65);
  background: rgba(255, 244, 231, 0.92);
}

.shop-capacity-banner div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.shop-capacity-banner strong {
  font-size: 13px;
}

.shop-capacity-banner span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.shop-capacity-banner .btn {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 10px;
  border: none;
  font-size: 11px;
}

.game-panel {
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(26, 79, 92, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.game-panel--cream {
  background: var(--panel-cream);
}

.game-panel--teal {
  background: linear-gradient(180deg, #d8f0f4 0%, #c4e8ee 100%);
}

.shop-card {
  border: none;
  overflow: hidden;
  position: relative;
  transition: background 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.shop-card.common { outline: 2px solid #95a5a6; outline-offset: -2px; border-radius: var(--radius); }
.shop-card.uncommon { outline: 2px solid #27ae60; outline-offset: -2px; border-radius: var(--radius); }
.shop-card.rare { outline: 2px solid #3498db; outline-offset: -2px; border-radius: var(--radius); }
.shop-card.legendary { outline: 2px solid #f39c12; outline-offset: -2px; border-radius: var(--radius); }

.shop-card.can-afford {
  background:
    linear-gradient(180deg, rgba(222, 250, 227, 0.78) 0%, rgba(255, 248, 238, 0.94) 100%),
    var(--panel-cream);
  border-color: rgba(46, 160, 85, 0.34);
  box-shadow: 0 4px 14px rgba(32, 137, 72, 0.14);
}

.shop-card.cannot-afford {
  background:
    linear-gradient(180deg, rgba(255, 226, 221, 0.82) 0%, rgba(255, 248, 238, 0.94) 100%),
    var(--panel-cream);
  border-color: rgba(206, 82, 65, 0.32);
  outline-color: rgba(206, 82, 65, 0.58);
  box-shadow: 0 4px 14px rgba(169, 67, 52, 0.12);
}

.game-panel--teal.shop-card.can-afford {
  background: linear-gradient(180deg, #dff8e8 0%, #cdeee0 100%);
}

.game-panel--teal.shop-card.cannot-afford {
  background: linear-gradient(180deg, #ffe4df 0%, #f5d0cb 100%);
}

.shop-card-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  color: inherit;
  font: inherit;
}

.shop-card-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.shop-card-preview {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.shop-fish-img {
  max-height: 64px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.shop-decor-img {
  max-height: 58px;
  max-width: 80%;
  object-fit: contain;
}

.shop-upgrade-img {
  max-height: 66px;
  max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(26, 79, 92, 0.18));
}

.shop-card-name {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.18;
}

.shop-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.shop-food-sub {
  min-height: 18px;
  margin: -2px 0 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.shop-decor-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0 0 8px;
}

.shop-decor-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 21px;
  padding: 3px 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 10.5px;
  line-height: 1.12;
}

.shop-decor-stat span {
  color: var(--text-muted);
  font-weight: 700;
}

.shop-decor-stat strong {
  color: var(--text-main);
  text-align: right;
  font-size: 10.5px;
}

.shop-fish-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0 0 8px;
}

.shop-fish-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 22px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.1;
}

.shop-fish-stat strong {
  color: var(--text);
  font-size: 11px;
  text-align: right;
}

.shop-tank-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.quest-card,
.collection-card,
.reward-day {
  background: var(--panel-cream);
  border-radius: var(--radius);
  padding: 14px;
  margin: 0 16px 12px;
  box-shadow: 0 3px 12px rgba(26, 79, 92, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.progress-track {
  height: 12px;
  background: rgba(26, 79, 92, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-fill--teal {
  background: linear-gradient(90deg, #3a8f9e 0%, #4fa8b8 100%);
}

.progress-fill--orange {
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.quest-progress {
  height: 12px;
  background: rgba(26, 79, 92, 0.12);
  border-radius: 999px;
  margin: 8px 0;
  overflow: hidden;
}

.quest-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3a8f9e 0%, #4fa8b8 100%);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.tank-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.action-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--panel-cream);
  box-shadow: 0 4px 16px rgba(26, 79, 92, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.action-fab:active {
  transform: scale(0.92);
}

.action-fab.active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 165, 130, 0.45);
}

.cleanliness-bar {
  min-width: 120px;
}

.cleanliness-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tank-capacity-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.tank-capacity-label.full {
  color: #b7633d;
}

.fish-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fish-detail-header .btn-secondary {
  min-width: 40px;
  padding: 8px 12px;
}

.fish-detail-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.fish-detail-arrow {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: inset 0 -2px 0 rgba(26, 79, 92, 0.12);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.fish-detail-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.fish-detail-nav-count {
  min-width: 28px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.fish-detail-img {
  width: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.fish-detail-title {
  min-width: 0;
  flex: 1 1 auto;
}

.fish-detail-title > div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.decoration-detail-img {
  width: 68px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.fish-detail-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.fish-detail-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fish-timers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.fish-timer-card {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(216, 240, 244, 0.72);
  border: 1px solid rgba(79, 168, 184, 0.22);
}

.fish-timer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.fish-timer-head span {
  min-width: 0;
  color: var(--text);
}

.fish-timer-head strong {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  color: var(--text-muted);
}

.fish-timer-bar {
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(26, 79, 92, 0.12);
  overflow: hidden;
}

.fish-timer-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.fish-timer-fill--hunger {
  background: linear-gradient(90deg, #58d68d 0%, #f2c94c 100%);
}

.fish-timer-fill--coin {
  background: linear-gradient(90deg, #f2c94c 0%, #f7b733 100%);
}

.decoration-detail-stats {
  gap: 10px;
}

.fish-feed-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.fish-detail {
  position: absolute;
  z-index: 25;
  left: 8px;
  right: 8px;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 8px);
  background: var(--panel-cream);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 -4px 28px rgba(26, 79, 92, 0.18);
  animation: slideUp 0.25s ease-out;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.game-btn,
.btn {
  border: none;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.game-btn--teal,
.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(244, 165, 130, 0.35);
}

.btn-secondary {
  background: #eee;
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.toast {
  position: fixed;
  top: calc(var(--top-bar-height) + var(--safe-top) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(26, 79, 92, 0.94);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  gap: 12px;
}

.loading-title {
  font-size: 24px;
  font-weight: 800;
}

.loading-sub {
  font-size: 14px;
  opacity: 0.85;
}

.cursor-tool-hint {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(26, 79, 92, 0.9);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  max-width: 92%;
  text-align: center;
  pointer-events: none;
}

.cursor-tool-icon {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 25;
}

.cursor-sprite {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.cursor-sponge {
  transform: rotate(-18deg);
}

.cursor-service-bag {
  width: 68px;
  height: 68px;
  transform: translateY(-8px);
}

.cursor-decor {
  width: 78px;
  height: 78px;
  opacity: 0.92;
}

.cursor-net-tool {
  position: relative;
  width: min(calc(52vw * var(--net-radius-scale, 1)), calc(210px * var(--net-radius-scale, 1)));
  height: min(calc(52vw * var(--net-radius-scale, 1)), calc(210px * var(--net-radius-scale, 1)));
}

.cursor-net-radius {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 248, 238, 0.82);
  background: rgba(79, 168, 184, 0.12);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.18);
}

.cursor-net {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.cursor-fish-bag {
  position: relative;
  width: 84px;
  height: 108px;
  transform: translateY(-10px);
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 36px 36px 28px 28px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.78) 0 13%, rgba(255, 255, 255, 0) 14% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(163, 230, 241, 0.34) 48%, rgba(44, 167, 190, 0.48) 100%);
  box-shadow:
    inset 0 0 16px rgba(255, 255, 255, 0.48),
    inset 0 -18px 24px rgba(48, 154, 183, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.cursor-fish-bag--service {
  transform: translateY(-12px) scale(0.92);
}

.cursor-fish-bag::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.cursor-fish-bag-knot {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 30px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 12px 12px 5px 5px;
  background: rgba(236, 251, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}

.cursor-fish-bag-water {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 50px;
  border-radius: 14px 14px 24px 24px;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.55) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(111, 216, 235, 0.28), rgba(28, 143, 176, 0.48));
}

.cursor-fish-in-bag {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 62px;
  max-height: 48px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.22));
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 0 16px 16px;
}

.reward-day {
  margin: 0;
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
}

.reward-day.today {
  outline: 2px solid var(--accent);
}

.more-section {
  padding: 4px 16px 12px;
}

.more-section h3 {
  margin: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.more-section .collection-card {
  margin: 0 0 10px;
}

.collection-card--decor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 42, 52, 0.72);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.3s ease-out;
}

.onboarding-card {
  width: 100%;
  max-width: 320px;
  background: var(--panel-cream);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 24px 20px 18px;
  text-align: center;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
  animation: slideUp 0.3s ease-out;
}

.onboarding-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.onboarding-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}

.onboarding-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  min-height: 62px;
}

.onboarding-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 16px;
}

.onboarding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 79, 92, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.onboarding-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.onboarding-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.onboarding-actions .btn {
  flex: 1;
  min-height: 44px;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (min-width: 481px) {
  .app-shell {
    box-shadow: 0 0 48px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
  }
}

/* Level chip in top bar */
.level-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 252, 245, 0.95);
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex: 0 0 auto;
}
.level-chip-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.level-chip-bar {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26, 79, 92, 0.15);
  overflow: hidden;
  display: inline-block;
}
.level-chip-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2c94c, #e8a838);
}

/* Order (zakázka) cards */
.order-card {
  margin: 0 16px 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf6ec 0%, #f7e9d4 100%);
  border: 1px solid #e8cfa8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.order-card--claimable {
  border-color: #f4a582;
  background: linear-gradient(135deg, #fff4ec 0%, #fde3d0 100%);
}
.order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.order-card-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.order-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.order-card-timer {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  color: #b0661e;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}
.order-card-reward {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #6d4a1c;
}
.order-card-claim-row {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.order-empty {
  margin: 0 16px 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.7);
  border: 1px dashed rgba(26, 79, 92, 0.3);
  color: var(--text-muted);
  font-size: 13px;
}
.order-claim-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  margin-right: 6px;
  vertical-align: middle;
  animation: badge-pulse 1.4s ease-in-out infinite;
}

/* ===== Wheel of fortune ===== */
.wheel-panel {
  margin: 0 16px 14px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf6ec 0%, #f7e9d4 100%);
  border: 1px solid #e8cfa8;
}
.wheel-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto 10px;
}
.wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid #d4a017;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid #e74c3c;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}
.wheel-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform-origin: 0 0;
}
.wheel-spins {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #6d4a1c;
  margin-bottom: 6px;
}
.wheel-result {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #27ae60;
  margin-bottom: 8px;
}

/* ===== Facilities ===== */
.facility-card {
  margin: 0 16px 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef7f2 0%, #dcefe4 100%);
  border: 1px solid #bcdcc8;
}
.facility-card--ready {
  border-color: #f4a582;
  background: linear-gradient(135deg, #fff4ec 0%, #fde3d0 100%);
}
.facility-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.facility-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.facility-level {
  font-size: 11px;
  font-weight: 700;
  color: #1f6f7e;
  background: rgba(63, 143, 158, 0.15);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}
.facility-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.facility-badge {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  color: #5d7a82;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}
.facility-badge--ready {
  color: #b0661e;
  background: rgba(255, 255, 255, 0.8);
}
.facility-produce {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Minigame ===== */
.minigame-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 26, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.minigame-panel {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #0e3a4a 0%, #0a2a38 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.minigame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 17px;
}
.minigame-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.minigame-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.minigame-combo {
  color: #f2c94c;
  font-weight: 800;
  animation: badge-pulse 0.6s ease-in-out infinite;
}
.minigame-canvas {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  touch-action: none;
  cursor: crosshair;
  background: #0c2a38;
}
.minigame-hint {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.minigame-empty {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.minigame-done {
  margin-top: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}
.minigame-done-title {
  font-size: 16px;
  font-weight: 800;
}
.minigame-done-score {
  font-size: 26px;
  font-weight: 900;
  color: #f2c94c;
  margin: 4px 0;
}
.minigame-done-reward {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

/* ===== Tank upgrade ===== */
.tank-upgrade-card {
  margin: 0 16px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f6f8 0%, #d4eef2 100%);
  border: 1px solid #a8d4dc;
}
.tank-upgrade-levels {
  display: flex;
  gap: 6px;
  margin: 8px 0;
}
.tank-upgrade-dot {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 79, 92, 0.15);
}
.tank-upgrade-dot--active {
  background: linear-gradient(90deg, #f2c94c, #e8a838);
}
