body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: transparent;
  color: #222;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

#app {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #cc0000;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.controls label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#generate {
  padding: 0.75rem;
  background: #cc0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#generate:hover {
  background: #a80000;
}

#results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: #fff0f0;
  padding: 0.75rem;
  border-radius: 8px;
  justify-content: center;
}

.number {
  background: #fff;
  border: 2px solid #cc0000;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: bold;
}

.powerball {
  background: #cc0000;
  color: #fff;
}
