* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f38020, #faae40);
  color: #1a1a1a;
}

.hero {
  text-align: center;
  background: #fff;
  padding: 3rem 4rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: #555;
  margin-bottom: 1.5rem;
}

button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: #f38020;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #d76c15;
}

#counter {
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 600;
}
