 body {
  font-family: Arial, Helvetica, sans-serif;
  background: #D9D9D9;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.popup {
  background: #fff9f0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
}

.popup h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #222;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.form-group label {
  font-weight: bold;
  font-size: 1rem;
}

.form-group input[type="email"],
.form-group input[type="date"] {
  flex: 1;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.counter button {
  width: 30px;
  height: 30px;
  background: #eee;
  font-size: 1.2rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.counter button:hover {
  background: #f0dcb9;
}

.counter .count {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
}

.form-group-total {
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: #333;
}

.amound {
  color: #406ce7;
}

.ticket-info {
  font-size: 0.9rem;
  line-height: 1.5;
  background: #fff2db;
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: left;
  color: #333;
}

.submit-btn {
  background: #406ce7;
  color: #fff;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  width: 100%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #2f56c5;
}

@media (max-width: 600px) {
  .popup {
    padding: 1.2rem;
  }

  .popup h1 {
    font-size: 1.4rem;
  }

  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group input[type="email"],
  .form-group input[type="date"] {
    width: 100%;
  }

  .form-group-total {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-info {
    font-size: 0.85rem;
  }
}
