/* خلفية داكنة مع خط Cairo */
body {
  margin: 0;
  padding: 0;
  background-color: #141414;
  color: #e8e6e3;
  font-family: "Cairo", sans-serif;
}

/* حاوية الصفحة الأساسية */
.main-stats {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* العنوان العلوي */
.stats-header {
  margin-top: 40px;
  margin-bottom: 20px;
}
.stats-header h1 {
  font-size: 32px;
  margin: 0;
  text-align: center;
}

/* الحاوية التي تمسك البطاقات */
.stats-container {
  display: flex;
  flex-wrap: wrap; /* حتى يتعامل مع الشاشات الصغيرة */
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}

/* كل بطاقة */
.stats-card {
  background-color: #202325;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.stats-card:hover {
  transform: scale(1.05);
}

/* عنوان البطاقة */
.stats-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

/* القيمة الرقمية */
.stats-value {
  font-size: 36px;
  font-weight: bold;
  color: #4caf50; /* درجة خضراء أو أي لون تفضله */
}

/* الفوتر */
.stats-footer {
  margin-top: auto;
  margin-bottom: 30px;
}

.back-to-main {
  color: #fff;
  text-decoration: none;
  border: 1px solid #4caf50;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #005000;
  transition: background-color 0.2s;
}
.back-to-main:hover {
  background-color: #4caf50;
  color: #141414; /* يبرز النص */
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 600px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  .stats-card {
    width: 80%;
    max-width: 300px;
  }
}

.reset-stats-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #600;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.reset-stats-btn:hover {
  background-color: #a00;
}
