body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #a9adb4;
}

.container {
  max-width: 400px;
  margin: 80px auto;
  background: #949090;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  margin-bottom: 20px;
  color: #222;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.features li {
  padding: 8px 0;
  font-size: 16px;
  color: #444;
}

/* Input styling */
input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

/* Button styling */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #28a745; /* green */
  color: #ffffff;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #218838;
  transform: scale(1.05);
}

/* Emoji animation */
.emoji {
  display: inline-block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
}

.show-emoji {
  opacity: 1;
  transform: translateY(0);
}
/* Cash + tick pulse animation inside modal */
.modal-icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: popCash 1.2s ease-in-out infinite;
}

@keyframes popCash {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Slight modal emphasis */
.modal-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}
