body {
  background-color: #f0f0f0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.lotto-machine {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

h1 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

#numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.3);
}

#draw-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

#draw-button:hover {
  background-color: #0056b3;
}

#draw-button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

/* Contact Form Styles */
.container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.contact-form label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.contact-form button:hover {
  background-color: #218838;
}

.contact-form button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3);
}
