body {
  font-family: Arial, sans-serif;
  direction: rtl;
  text-align: center;
  background-color: #f0f0f0;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://lh6.googleusercontent.com/proxy/Wif0Z2NhfMXNhIpGsE1uKKM2HcTI3KLp9zk73KEjYHJjKEkA1rR43IbMH5f-FpbhP3jJ8_YcfOkiXNHT_HyM1JMtpkrRAdG9IuRchJ7xGEGB6Q");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

.container {
  margin-top: 50px;
  animation: fadeIn 1s ease-in-out;
  background: rgba(
    255,
    255,
    255,
    0.8
  ); /* Add a white background with opacity */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
}

#subscribeContainer {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#subscribeContainer img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: hue-rotate(0deg) saturate(100%) brightness(10%) contrast(200%);
}

#subscribeContainer button {
  width: 100%;
}

#questionContainer,
#resultContainer {
  margin-top: 20px;
}

#celebrationContainer {
  background: #e0e0e0;
  color: #333;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#resultContainer {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#questionContainer {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-out {
  animation: fadeOut 1s forwards;
}

.btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

#phoneForm label {
  display: block;
  margin-top: 1rem;
}

#phoneForm submit {
  width: 100%;
}
#phoneForm input {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

#shareContainer {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#shareContainer h2,
#shareContainer h3 {
  text-align: center;
}

#shareBtn {
  background-color: #28a745;
  color: white;
  width: 100%;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#shareProgress {
  width: 100%;
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
}

#shareProgress::-webkit-progress-bar {
  background-color: #f3f3f3;
  border-radius: 15px;
}

#shareProgress::-webkit-progress-value {
  background-color: #28a745;
  border-radius: 15px;
}

#shareProgress::-moz-progress-bar {
  background-color: #28a745;
  border-radius: 15px;
}
