.lotto-section {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.lotto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffe100;
  padding: 1rem;
  font-weight: bold;
  font-size: 1rem;
}

.lotto-title {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 1rem 0;
}

.balls-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.ball-container {
  text-align: center;
}

.ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fbc02d;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.ball.bonus {
  background: #1976d2;
  color: white;
}

.bonus-label {
  font-size: 0.75rem;
  font-weight: normal;
  color: #444;
  margin-top: 0.2rem;
}

.draw-info {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
