body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg,#ff5f9e,#ff9966,#a855f7);
  text-align: center;
  color: #fff;
}

header {
  padding: 15px;
  background: rgba(0,0,0,0.3);
}

button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  background: gold;
  font-weight: bold;
  cursor: pointer;
}

select {
  margin: 15px;
  padding: 10px;
  border-radius: 12px;
}

.counter {
  width: 220px;
  height: 220px;
  margin: 20px auto;
  background: white;
  color: #ff4081;
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size: 60px;
  box-shadow: 0 0 30px rgba(255,255,255,0.8);
  cursor: pointer;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.stats div {
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 15px;
  width: 90px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: rgba(255,255,255,0.2);
  margin: 6px auto;
  width: 80%;
  padding: 8px;
  border-radius: 12px;
}
