body {
  background: linear-gradient(135deg, #ffcc70, #c850c0);
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-top: 40px;
  color: #fff;
}

.title {
  font-size: 40px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px #0005;
}

.hud {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.hud-item {
  font-size: 22px;
  background: #ffffff30;
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.btn {
  padding: 12px 25px;
  font-size: 20px;
  border: none;
  background: #ffdd57;
  color: #333;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: #ffe78a;
  transform: scale(1.05);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 15px;
  margin: 30px auto;
  width: max-content;
}

.cell {
  width: 120px;
  height: 120px;
  background: #ffffff20;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  user-select: none;
  backdrop-filter: blur(4px);
}
.cell:hover {
  background: #ffffff35;
}

.mole {
  animation: pop 0.25s ease-out;
}

@keyframes pop {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
