.whack-game-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #e0f2fe;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #bae6fd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whack-canvas {
  image-rendering: pixelated;
  cursor: pointer;
  max-width: 100%;
  height: auto;
  margin: auto;
}

/* Rare mole animation */
.rare-mole {
  filter: drop-shadow(0 0 8px gold);
  animation: rare-glow 1s ease-in-out infinite alternate;
}

@keyframes rare-glow {
  from {
    filter: drop-shadow(0 0 4px gold);
  }
  to {
    filter: drop-shadow(0 0 12px gold);
  }
}

/* Inherit existing compact game styles */
.compact-game {
  min-width: 500px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-header {
  text-align: center;
  margin-bottom: 10px;
}

.compact-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 4px;
  background: #f8f9fa;
}

.stat-group {
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: #666;
}

.stat-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.compact-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  background-color: #3b82f6;
  color: white;
  transition: all 0.2s ease;
}

.compact-button:hover:not(:disabled) {
  background-color: #2563eb;
}

.compact-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}