/* ✅ تنسيق عام */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #f8f9fc, #e9edf3);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ✅ الحاوية الرئيسية */
.container {
  width: 100%;
  max-width: 500px;
}

/* ✅ البطاقة */
.card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  text-align: center;
}

/* ✅ العنوان */
.title {
  font-size: 1.9rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

/* ✅ الوصف */
.description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* ✅ رابط الدومين */
.domain-link {
  display: inline-block;
  font-size: 1.2rem;
  color: #007aff;
  font-weight: 600;
  margin-bottom: 30px;
  text-decoration: none;
}
.domain-link:hover {
  text-decoration: underline;
}

/* ✅ زر واتساب: أيقونة + نص */
.whatsapp-combo {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.whatsapp-combo a {
  background-color: #25d366;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.whatsapp-combo a:hover {
  background-color: #1ebe5c;
}
.whatsapp-combo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* ✅ استجابة للشاشات الصغيرة */
@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
  }

  .title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .domain-link {
    font-size: 1rem;
  }

  .whatsapp-combo a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .whatsapp-combo img {
    width: 20px;
    height: 20px;
  }
}
