/* =========================================================
   IDLE MINER TYCOON - AUTHENTIC MOBILE GAME ART STYLE
   Vibrant cartoon palettes, rounded glossy buttons, warm dirt & grass
   ========================================================= */

:root {
  --sky-blue: #4aa3df;
  --grass-green: #52b72c;
  --grass-dark: #378b1d;
  --dirt-brown: #a05a2c;
  --dirt-dark: #6e3819;
  --shaft-dark: #22150c;
  
  --gold-yellow: #ffcc00;
  --gold-shadow: #c69200;
  --gold-shine: #fff275;

  --super-cash-green: #2ecc71;
  --super-cash-dark: #27ae60;

  --ui-bg: #2d3436;
  --panel-bg: #dfe6e9;
  --card-bg: #ffffff;
  --card-border: #b2bec3;

  --btn-green: #2ecc71;
  --btn-green-shadow: #219653;
  --btn-blue: #3498db;
  --btn-blue-shadow: #2980b9;
  --btn-yellow: #f1c40f;
  --btn-yellow-shadow: #d68910;
  --btn-red: #e74c3c;
  --btn-red-shadow: #c0392b;

  --text-dark: #2c3e50;
  --text-muted: #7f8c8d;
  --text-white: #ffffff;

  --font-main: 'Fredoka', 'Nunito', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

body {
  background: #1e272e;
  font-family: var(--font-main);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

#game-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================================
   1. TOP HUD (Idle Miner Tycoon Style Header)
   ========================================================= */
.tycoon-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: linear-gradient(180deg, #34495e 0%, #2c3e50 100%);
  border-bottom: 4px solid #1a252f;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 100;
  gap: 12px;
}

/* Profile Pill */
.hud-profile-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.35);
  border-radius: 30px;
  padding: 4px 14px 4px 6px;
  border: 2px solid #486581;
}

.avatar-frame {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c40f, #e67e22);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.avatar-emoji {
  font-size: 1.6rem;
}

.avatar-lvl {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #e74c3c;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
  border: 1.5px solid white;
}

.profile-meta {
  display: flex;
  flex-direction: column;
}

.profile-name {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.profile-title {
  color: #f1c40f;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Currency Badges in Header */
.hud-currency-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.currency-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e272e;
  border-radius: 24px;
  padding: 4px 16px 4px 8px;
  border: 2px solid #485460;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.coin-icon-spin {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
  animation: coinBob 2s infinite ease-in-out;
}

@keyframes coinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.super-cash-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}

.currency-text-group {
  display: flex;
  flex-direction: column;
}

.currency-val {
  color: #ffdd59;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.currency-val.green {
  color: #2ecc71;
}

.currency-rate {
  color: #0be881;
  font-size: 0.72rem;
  font-weight: 700;
}

.currency-sub {
  color: #a4b0be;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Cloud Status Pill */
.cloud-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 204, 113, 0.15);
  border: 1.5px solid #2ecc71;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2ecc71;
}

.cloud-icon {
  font-size: 0.9rem;
}

/* Controls / Boost Buttons */
.hud-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #34495e;
  border: 2px solid #576574;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 #1e272e;
  transition: transform 0.1s ease;
}

.circle-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #1e272e;
/* =========================================================
   2. OBJECTIVE BANNER (Screenshot 2 "50/7000" Bar)
   ========================================================= */
.objective-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  background: linear-gradient(180deg, #485460 0%, #2d3436 100%);
  border-bottom: 3px solid #1e272e;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.1);
}

.obj-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.obj-coin-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}

.obj-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: 450px;
}

.obj-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.obj-progress-track {
  height: 16px;
  background: #1e272e;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obj-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, #f1c40f 0%, #e67e22 100%);
  border-radius: 8px;
  transition: width 0.3s ease;
}

.obj-count-text {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.obj-claim-btn {
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: 0 3px 0 #1e8449, 0 0 10px rgba(46, 204, 113, 0.6);
  animation: pulseClaim 1s infinite alternate;
}

.obj-claim-btn.hidden {
  display: none;
}

@keyframes pulseClaim {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* =========================================================
   3. MAIN GAME ARENA (3-Column Layout)
   ========================================================= */
.game-main-area {
  display: grid;
  grid-template-columns: 80px 1fr 370px;
  gap: 12px;
  padding: 10px 14px;
  flex: 1;
  overflow: hidden;
}

/* Left Action Drawer (Managers, Missions, Prestige) */
.left-action-drawer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 10px;
}

.drawer-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s ease;
}

.drawer-btn:hover {
  transform: translateY(-2px);
}

.drawer-btn:active {
  transform: translateY(1px);
}

.btn-bubble {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #485460 0%, #2d3436 100%);
  border: 3px solid #718093;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #1e272e, 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

.btn-bubble .icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}

.bubble-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.bubble-badge.hidden {
  display: none;
}

.drawer-btn .label {
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  text-shadow: 0 1px 2px black;
}

/* Center Viewport Card */
.viewport-card {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #34495e;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #3a7bd5;
}

#minerCanvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.canvas-toast-banner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: #fffa65;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Floating Camera Nav */
.camera-floating-nav {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 20px;
  border: 2px solid #576574;
}

.cam-nav-pill {
  background: #34495e;
  border: none;
  color: white;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.cam-nav-pill.active {
  background: #f1c40f;
  color: #2c3e50;
}

/* =========================================================
   4. RIGHT DRAWER: FACILITY & SHAFT UPGRADES
   ========================================================= */
.right-upgrades-drawer {
  background: linear-gradient(180deg, #ecf0f1 0%, #bdc3c7 100%);
  border-radius: 16px;
  border: 4px solid #7f8c8d;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.upgrades-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #34495e;
  color: white;
  border-bottom: 3px solid #2c3e50;
}

.upgrades-header h3 {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.mult-selector {
  display: flex;
  gap: 4px;
  background: #1e272e;
  padding: 2px;
  border-radius: 16px;
}

.mult-btn {
  background: transparent;
  border: none;
  color: #a4b0be;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
}

.mult-btn.active {
  background: #f1c40f;
  color: #2c3e50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.upgrades-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Custom Scrollbar */
.upgrades-scrollable::-webkit-scrollbar {
  width: 6px;
}
.upgrades-scrollable::-webkit-scrollbar-thumb {
  background: #95a5a6;
  border-radius: 3px;
}

/* Upgrade Cards */
.upgrade-card {
  background: #ffffff;
  border: 2px solid #bdc3c7;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upgrade-card.warehouse-card { border-left: 5px solid #e67e22; }
.upgrade-card.elevator-card { border-left: 5px solid #3498db; }
.upgrade-card.shaft-card { border-left: 5px solid #2ecc71; }

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.facility-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f1f2f6;
  border: 2px solid #ced6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.facility-details {
  flex: 1;
}

.facility-details h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #2c3e50;
}

.lvl-tag {
  color: #3498db;
  font-size: 0.75rem;
  font-weight: 800;
}

.specs {
  display: flex;
  gap: 8px;
  font-size: 0.7rem;
  color: #7f8c8d;
}

.specs strong {
  color: #2c3e50;
}

/* Chunky Upgrade Buttons (Idle Miner Tycoon green glossy button!) */
.btn-tycoon-upgrade {
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
  border: 2px solid #ffffff;
  border-radius: 10px;
  color: white;
  font-family: var(--font-main);
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 0 #1e8449, 0 3px 6px rgba(0,0,0,0.2);
  transition: all 0.1s ease;
}

.btn-tycoon-upgrade:hover:not(:disabled) {
  background: linear-gradient(180deg, #38d67c 0%, #2ecc71 100%);
  transform: translateY(-1px);
}

.btn-tycoon-upgrade:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #1e8449;
}

.btn-tycoon-upgrade:disabled {
  background: #bdc3c7;
  border-color: #95a5a6;
  box-shadow: 0 4px 0 #7f8c8d;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-title {
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}

.btn-price {
  font-weight: 900;
  font-size: 0.95rem;
  color: #f1c40f;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Shafts Separator */
.shafts-separator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  color: #576574;
  padding: 4px 2px;
  border-bottom: 2px dashed #bdc3c7;
  margin: 4px 0;
}

.shafts-count {
  background: #34495e;
  color: white;
  padding: 1px 6px;
  border-radius: 8px;
}

/* Blast New Shaft Big Button */
.btn-blast-shaft {
  background: linear-gradient(180deg, #ff7675 0%, #d63031 100%);
  border: 3px solid white;
  border-radius: 12px;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 0 #b71540, 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.15s ease;
  margin-top: 6px;
}

.btn-blast-shaft:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b71540;
}

.btn-blast-shaft:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b71540;
}

.btn-blast-shaft:disabled {
  background: #bdc3c7;
  border-color: #95a5a6;
  box-shadow: 0 4px 0 #7f8c8d;
  cursor: not-allowed;
  opacity: 0.6;
}

.blast-icon {
  font-size: 1.8rem;
}

.blast-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.blast-title {
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.blast-cost {
  font-size: 0.8rem;
}

.blast-cost strong {
  color: #f1c40f;
}

/* =========================================================
   5. POPUP MODALS (Managers, Missions, Prestige, Boosts)
   ========================================================= */
.tycoon-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.tycoon-modal-backdrop.open {
  display: flex;
}

.tycoon-modal-dialog {
  background: linear-gradient(180deg, #ffffff 0%, #f1f2f6 100%);
  border-radius: 20px;
  border: 5px solid #34495e;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: 90%;
  max-width: 580px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tycoon-modal-dialog.small {
  max-width: 380px;
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  background: #34495e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 3px solid #2c3e50;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon {
  font-size: 1.5rem;
}

.modal-title-group h2 {
  font-size: 1.15rem;
  font-weight: 900;
}

.modal-close {
  background: #e74c3c;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modal-body {
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-body.center-text {
  align-items: center;
  text-align: center;
}

.modal-tip {
  font-size: 0.8rem;
  color: #7f8c8d;
  font-weight: 600;
}

/* Manager Card in Modal */
.manager-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid #bdc3c7;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
  gap: 12px;
}

.mgr-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1c40f;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mgr-info {
  flex: 1;
}

.mgr-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2c3e50;
}

.mgr-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3498db;
}

.mgr-perk {
  font-size: 0.72rem;
  font-weight: 700;
  color: #27ae60;
}

.btn-hire {
  background: linear-gradient(180deg, #f1c40f 0%, #e67e22 100%);
  border: 2px solid white;
  border-radius: 12px;
  color: white;
  font-family: var(--font-main);
  font-weight: 900;
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 3px 0 #d35400;
  white-space: nowrap;
}

.btn-hire:disabled {
  background: #bdc3c7;
  box-shadow: 0 3px 0 #95a5a6;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Mission Item in Modal */
.mission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid #bdc3c7;
  border-radius: 12px;
  padding: 10px 14px;
  gap: 12px;
}

.mission-row.done {
  border-color: #2ecc71;
  background: #eafaf1;
}

.mission-main {
  flex: 1;
}

.mission-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #2c3e50;
}

.mission-desc {
  font-size: 0.75rem;
  color: #7f8c8d;
  margin-bottom: 4px;
}

.mission-progress {
  height: 10px;
  background: #ecf0f1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.mission-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.mission-reward {
  font-weight: 900;
  color: #2ecc71;
  font-size: 0.85rem;
}

/* Prestige Modal */
.prestige-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.prestige-mine-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.prestige-info h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 4px;
}

.prestige-info p {
  font-size: 0.8rem;
  color: #7f8c8d;
  line-height: 1.4;
  margin-bottom: 8px;
}

.prestige-bonus-preview {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c3e50;
}

.prestige-bonus-preview .green {
  color: #27ae60;
}

.btn-prestige-action {
  background: linear-gradient(180deg, #9b59b6 0%, #8e44ad 100%);
  border: 3px solid white;
  border-radius: 12px;
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 900;
  padding: 12px 20px;
  cursor: pointer;
  box-shadow: 0 4px 0 #6c3483;
}

.btn-prestige-action:disabled {
  background: #bdc3c7;
  box-shadow: 0 4px 0 #7f8c8d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* =========================================================
   6. FLOATING TOASTS
   ========================================================= */
#tycoon-toasts {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99999;
  pointer-events: none;
}

.tycoon-toast {
  background: linear-gradient(180deg, #2c3e50 0%, #1e272e 100%);
  border: 2px solid #f1c40f;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: toastFloat 0.3s ease, toastFadeOut 0.3s ease 2.7s forwards;
}

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

@keyframes toastFadeOut {
  to { transform: translateY(-15px); opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 1050px) {
  .game-main-area {
    grid-template-columns: 70px 1fr 300px;
  }
}
