body {
  font-family: Arial, sans-serif;
  background: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.game-container {
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#emoji-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.emoji {
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.emoji:hover {
  transform: scale(1.2);
}

#reset-btn {
  padding: 10px 20px;
  border: none;
  background: #0077ff;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

#reset-btn:hover {
  background: #005ccc;
}