body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  font-family: Arial, sans-serif;
}

.counter-box {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(91, 33, 182, 0.12);
}

#count {
  font-size: 64px;
  margin: 10px 0 20px;
  color: #5b21b6;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #7c3aed;
  color: white;
  font-weight: bold;
  transition: transform 0.15s ease, background 0.2s ease;
}

button:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}
