:root {
  --bg-gradient: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 50%, #fed6e3 100%);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --panel-border: rgba(255, 255, 255, 0.95);
  --primary-color: #ff477e;
  --secondary-color: #ff9900;
  --bubble-blue: #48cae4;
  --bubble-green: #06d6a0;
  --gold-color: #ffb703;
  --text-main: #2b2d42;
  --text-dim: #6c757d;
  --danger-orange: #ff5400;
  --danger-glow: rgba(255, 84, 0, 0.5);
  --canvas-bg: linear-gradient(180deg, #f0f8ff 0%, #e0f2fe 100%);
  --radius-lg: 18px;
  --radius-md: 14px;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Fredoka', cursive, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  position: relative;
}

/* Background floating clouds */
.clouds-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.cloud {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.65;
  animation: floatCloud 24s linear infinite;
}

.cloud-1 { top: 4%; left: -10%; animation-duration: 28s; }
.cloud-2 { top: 65%; left: -15%; animation-duration: 35s; animation-delay: 4s; }
.cloud-3 { top: 12%; right: 6%; animation: floatSun 6s ease-in-out infinite alternate; opacity: 0.85; font-size: 3rem; }
.cloud-4 { bottom: 5%; left: 4%; animation: pulseRainbow 4s ease-in-out infinite alternate; opacity: 0.75; font-size: 2.8rem; }

@keyframes floatCloud {
  0% { transform: translateX(-80px); }
  100% { transform: translateX(110vw); }
}

@keyframes floatSun {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-8px) rotate(12deg) scale(1.08); }
}

@keyframes pulseRainbow {
  0% { transform: scale(0.95) rotate(-4deg); }
  100% { transform: scale(1.06) rotate(4deg); }
}

/* Main Container - Fits 100% within viewport */
.game-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  max-height: 100vh;
  gap: 4px;
  padding: 4px 6px;
  z-index: 1;
}

/* Header */
.game-header {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--panel-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #ffffff;
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 6px 18px rgba(112, 144, 176, 0.2);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ff3366;
  text-shadow: 1px 1px 0px #ffe5ec;
  white-space: nowrap;
}

.brand-title span {
  color: #ff9900;
}

/* Ad Buttons Group */
.ad-buttons-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Rewarded Ad Buttons */
.reward-ad-btn {
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 16px;
  padding: 3px 7px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reward-wand-btn {
  background: linear-gradient(135deg, #7209b7 0%, #f72585 100%);
  box-shadow: 0 3px 8px rgba(181, 23, 158, 0.35);
}

.reward-spawn-btn {
  background: linear-gradient(135deg, #ff9f1c 0%, #f77f00 100%);
  box-shadow: 0 3px 8px rgba(255, 159, 28, 0.35);
}

.reward-ad-btn:hover {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.reward-ad-btn:active {
  transform: scale(0.95);
}

.ad-badge {
  background: #ffffff;
  font-size: 0.52rem;
  font-weight: 900;
  padding: 1px 3px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.reward-wand-btn .ad-badge {
  color: #7209b7;
}

.reward-spawn-btn .ad-badge {
  color: #f77f00;
}

.ad-text {
  letter-spacing: 0.3px;
}

/* HUD Panels */
.hud-panels {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.85fr 0.85fr auto;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.hud-card {
  background: #ffffff;
  border: 2px solid #e2eafc;
  border-radius: 10px;
  padding: 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-shadow: 0 2px 8px rgba(160, 180, 210, 0.12);
}

.hud-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hud-value {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.score-card .hud-value {
  color: #0077b6;
}

.best-card .hud-value {
  color: #f77f00;
}

.next-emoji-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  max-height: 26px;
  overflow: hidden;
  font-size: 1.4rem;
  animation: bounceMini 1.2s ease-in-out infinite;
}

@keyframes bounceMini {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hud-controls {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-btn {
  background: #ffffff;
  border: 2px solid #d7e3fc;
  color: #333;
  border-radius: 8px;
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease;
}

.icon-btn:hover {
  background: #ffea00;
  transform: scale(1.08);
}

.restart-btn:hover {
  background: #ff5d8f;
}

/* Arena & Responsive Canvas */
.game-arena-container {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.canvas-wrapper {
  position: relative;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 460 / 660;
  width: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--canvas-bg);
  box-shadow: 0 10px 30px rgba(70, 100, 150, 0.22),
              0 0 0 3px #ffffff,
              0 0 0 6px rgba(160, 210, 255, 0.5);
}

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

.remove-mode-active #gameCanvas {
  cursor: crosshair !important;
}

/* Danger Line Warning Banner */
.danger-banner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-130%);
  width: 90%;
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 10;
}

.danger-banner.active {
  transform: translateX(-50%) translateY(0);
}

.danger-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.danger-icon {
  font-size: 1.4rem;
}

.animate-bounce {
  animation: bounceClock 0.5s infinite alternate;
}

@keyframes bounceClock {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-3px) scale(1.15) rotate(8deg); }
}

.danger-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.danger-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.danger-subtitle {
  font-size: 0.65rem;
  color: #fff0f3;
  font-weight: 600;
}

.danger-countdown {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ff3366;
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 8px;
  min-width: 55px;
  text-align: center;
}

.danger-progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.danger-progress-fill {
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Remove Mode Active Banner */
.remove-mode-banner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-140%);
  width: 92%;
  background: linear-gradient(135deg, #7209b7 0%, #b5179e 100%);
  border: 2px solid #ffffff;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(114, 9, 183, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 20;
}

.remove-mode-banner.active {
  transform: translateX(-50%) translateY(0);
}

.remove-mode-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wand-icon {
  font-size: 1.5rem;
  animation: wandWiggle 0.6s infinite alternate ease-in-out;
}

@keyframes wandWiggle {
  0% { transform: rotate(-15deg) scale(1); }
  100% { transform: rotate(15deg) scale(1.2); }
}

.remove-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.remove-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
}

.remove-subtitle {
  font-size: 0.68rem;
  color: #f3e8ff;
  font-weight: 600;
}

.cancel-remove-btn {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid #ffffff;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.cancel-remove-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* Combo Notice */
.combo-notice {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #ffe066, #ff922b);
  color: #ffffff;
  text-shadow: 2px 2px 0px #d9480f;
  font-weight: 900;
  font-size: 1.4rem;
  padding: 6px 16px;
  border-radius: 25px;
  border: 3px solid #ffffff;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(255, 146, 43, 0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.combo-notice.show {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

/* Footer & Evolution Bar */
.game-footer {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.evolution-guide {
  background: var(--panel-bg);
  border: 2px solid #ffffff;
  border-radius: var(--radius-md);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  box-shadow: 0 4px 12px rgba(112, 144, 176, 0.15);
}

.guide-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ff477e;
  white-space: nowrap;
}

.evolution-chain {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.15rem;
  overflow-x: auto;
}

.evo-step {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.evo-step:hover {
  transform: scale(1.3) translateY(-2px);
}

.evo-arrow {
  font-size: 0.7rem;
  color: #a0c4ff;
  font-weight: 900;
}

.controls-hint {
  text-align: center;
  font-size: 0.7rem;
  color: #4a5568;
  font-weight: 700;
  padding: 1px;
}

/* Modals & Picker */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #ffffff;
  border: 4px solid #ffb3c6;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-badge {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ff3366;
  background: #ffe5ec;
  border: 2px solid #ffb3c6;
  padding: 4px 14px;
  border-radius: 20px;
}

.reward-badge {
  color: #ff7f00;
  background: #fff3e6;
  border-color: #ffd8a8;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.modal-subtitle {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Emoji Picker Grid */
.emoji-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 2px;
}

.picker-item {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.picker-item.unlocked:hover {
  background: #fff3e6;
  border-color: #ff9900;
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 153, 0, 0.25);
}

.picker-item.unlocked:active {
  transform: scale(0.95);
}

.picker-item.locked {
  opacity: 0.45;
  background: #e9ecef;
  border-color: #dee2e6;
  cursor: not-allowed;
  filter: grayscale(0.8);
}

.picker-lock-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 0.75rem;
}

.picker-char {
  font-size: 1.8rem;
  line-height: 1;
}

.picker-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-main);
}

.secondary-btn {
  background: #f1f3f5;
  color: #495057;
  border: 2px solid #dee2e6;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.secondary-btn:hover {
  background: #e9ecef;
}

/* Ad Simulation Spinner */
.ad-sim-card {
  max-width: 280px;
  padding: 24px 16px;
}

.ad-spinner {
  font-size: 3rem;
  animation: spinClapper 1s infinite alternate ease-in-out;
}

@keyframes spinClapper {
  0% { transform: rotate(-15deg) scale(1); }
  100% { transform: rotate(15deg) scale(1.15); }
}

.game-over-stats {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.stat-box {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 800;
}

.stat-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #2b2d42;
}

.stat-val.highlight {
  color: #0077b6;
}

.stat-val.emoji-val {
  font-size: 1.5rem;
}

.new-highscore-tag {
  display: none;
  font-size: 1rem;
  font-weight: 900;
  color: #ff9900;
  animation: bounceTag 0.8s ease-in-out infinite alternate;
}

@keyframes bounceTag {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.primary-play-btn {
  background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
  color: #fff;
  border: 3px solid #ffffff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(6, 214, 160, 0.4);
  transition: all 0.2s ease;
  width: 100%;
}

.primary-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(6, 214, 160, 0.6);
}

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

.evo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.picker-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 4px;
}

.picker-item.locked .picker-img {
  filter: grayscale(100%) opacity(0.4);
}

#nextEmojiChar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

#nextEmojiChar img {
  width: 100%;
  height: 100%;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
}

#highestEmoji img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
}

/* --- COMBO ENERGY PROGRESS BAR --- */
.combo-energy-container {
  width: 100%;
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.combo-energy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #ff9900;
  letter-spacing: 0.5px;
  padding: 0 4px;
}

.energy-label {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #7209b7;
}

.energy-pct {
  color: #f72585;
  font-weight: 800;
}

.combo-energy-track {
  width: 100%;
  height: 7px;
  background: rgba(200, 220, 245, 0.7);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

.combo-energy-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4cc9f0, #7209b7, #f72585, #ffd166);
  background-size: 200% 100%;
  border-radius: 10px;
  transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: energyGlow 2s linear infinite;
}

@keyframes energyGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- POWER-UP INVENTORY SLOT IN HUD --- */
.powerup-card {
  position: relative;
}

.powerup-slot-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}

.powerup-slot-btn.empty {
  opacity: 0.45;
  cursor: default;
  filter: grayscale(80%);
}

.powerup-slot-btn.ready {
  opacity: 1;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(247, 37, 133, 0.8));
  animation: pulsePowerUp 1.2s infinite alternate ease-in-out;
  background: rgba(255, 230, 245, 0.85);
}

@keyframes pulsePowerUp {
  0% { transform: scale(1); }
  100% { transform: scale(1.18) rotate(6deg); }
}

.powerup-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #7209b7;
  color: white;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 10px;
  border: 1px solid white;
}

.powerup-slot-btn.ready .powerup-badge {
  background: #f72585;
  animation: badgePop 0.8s infinite alternate;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

/* --- POWER-UP ACTIVE TARGETING BANNER --- */
.powerup-banner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  background: linear-gradient(135deg, #7209b7 0%, #f72585 100%);
  color: white;
  border-radius: 24px;
  padding: 6px 14px;
  box-shadow: 0 8px 20px rgba(114, 9, 183, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 15;
  width: 90%;
  max-width: 360px;
}

.powerup-banner.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.powerup-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.powerup-banner-icon {
  font-size: 1.5rem;
  animation: bounceMini 1s infinite;
}

.powerup-banner-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.powerup-banner-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.powerup-banner-sub {
  font-size: 0.68rem;
  opacity: 0.92;
  font-weight: 600;
}

.cancel-powerup-btn {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.cancel-powerup-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.canvas-wrapper.powerup-mode-active {
  cursor: crosshair;
  border-color: #f72585;
  box-shadow: 0 0 25px rgba(247, 37, 133, 0.5);
}

