body {
  margin: 0;
  background: linear-gradient(180deg, #111, #222);
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.game {
  max-width: 400px;
  margin: 30px auto;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
}

#mona {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

#mona:active {
  transform: scale(0.97);
}

.smile {
  filter: brightness(1.1) saturate(1.2);
}

.hint {
  opacity: 0.6;
  margin-top: 10px;
}

#timer {
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.8;
}
