/* تنظیمات کلی و فونت */
/*@import url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css");*/

:root {
  --primary-color: #1a5f45; /* سبز تیره اسلامی */
  --secondary-color: #c5a059; /* طلایی */
  --bg-color: #f4f7f6;
  --card-bg: #ffffff;
  --text-color: #333333;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background-color: var(--bg-color);
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: var(--text-color);
  padding: 20px;
}

/* کانتینر اصلی کارت */
.container {
  background-color: var(--card-bg);
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 5px solid var(--secondary-color);
  position: relative;
}

/* هدر و تصویر */
.header {
  position: relative;
  text-align: center;
  padding: 30px 20px 10px;
}

.image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  background-color: #eee;
}

.title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* بخش آمار */
.stats-box {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  margin: 0 20px 25px;
  text-align: center;
}

.stats-label {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

.stats-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: "Tahoma", sans-serif; /* برای خوانایی بهتر اعداد */
  letter-spacing: 1px;
}

/* دکمه صلوات */
.action-area {
  text-align: center;
  padding: 0 20px 30px;
}

.salavat-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-color), #134d38);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(26, 95, 69, 0.4);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  border: 2px solid transparent;
  cursor: pointer;
  user-select: none;
}

.salavat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 95, 69, 0.5);
  background: linear-gradient(135deg, #1a6b4f, var(--primary-color));
}

.salavat-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(26, 95, 69, 0.3);
}

/* فوتر و لینک پشتیبانی */
.footer {
  background-color: #fcfcfc;
  border-top: 1px solid #eee;
  padding: 15px;
  text-align: center;
  font-size: 0.8rem;
}

.support-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.support-link:hover {
  color: #b08d4b;
  text-decoration: underline;
}

/* المان‌های تزئینی */
.decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.dec-1 {
  top: -20px;
  left: -20px;
}
.dec-2 {
  bottom: -20px;
  right: -20px;
}
