/*!v1.0.0*/
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #e5f5e0;
  color: #2a2a2a;
  font-size: 18px;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.screen {
  display: none;
  text-align: center;
  padding: 20px;
}

.screen.active {
  display: block;
}

.main-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

h1, h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #075e54;
}

.btn {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.text-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-btn {
  background-color: #ffffff;
  border: 2px solid #25D366;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  color: #075e54;
}

.text-btn:hover {
  background-color: #25D366;
  color: #fff;
}

.loader {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #25D366;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.girls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  max-width: 100%;
  padding: 0 15px;
}

.girl {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.girl-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #25D366;
}

.phone-number {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  color: #2a2a2a;
  text-align: center;
}

.timer {
  text-align: center;
  font-size: 18px;
  margin: 25px auto;
  font-weight: bold;
  color: #d11b1b;
  display: block;
  width: fit-content;
}

.btn.pulse {
  display: block;
  margin: 20px auto;
  width: fit-content;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e5f5e0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: #2a2a2a;
  border-top: 1px solid #ccc;
  z-index: 999;
}

.footer a {
  color: #2a2a2a;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

/* تحسين التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .girl {
    min-width: 120px;
    max-width: 150px;
  }

  .girl-img {
    width: 100px;
    height: 100px;
  }

  .phone-number {
    font-size: 14px;
  }

  h1, h2 {
    font-size: 20px;
  }

  .desc {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .girl {
    min-width: 100px;
    max-width: 120px;
  }

  .girl-img {
    width: 80px;
    height: 80px;
  }

  .phone-number {
    font-size: 12px;
  }

  .timer {
    font-size: 16px;
  }
}