
.lotto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-family: Arial, sans-serif;
  margin-top: 1rem;
}
.lotto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1rem;
  max-width: 280px;
  flex: 1 1 250px;
}
.lotto-card h2 {
  font-size: 1.2rem;
  color: #502d87;
  margin-bottom: 0.5rem;
}
.lotto-card p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}
.balls {
  margin: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ball {
  background: #ffcc00;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #222;
  font-size: 0.85rem;
}
.bonus-ball {
  background: #b388ff !important;
  color: white !important;
}
@media (max-width: 600px) {
  .lotto-card {
    max-width: 100%;
  }
}
