p {
  font-family: "Arial", "Tahoma", "Verdana", sans-serif;
}  
.game-card {
  margin-top: -7px !important;
  margin: 0 auto;
  padding: 0 16px; 
  background: #79CCFF;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-family: sans-serif;
  max-width: 95% !important;
  background: linear-gradient(0deg, #673ab7, #4eb8ff);
  padding: 20px clamp(20px, 0.5vw, 40px);
  box-sizing: border-box;
  
}
.game-cover {
  width: 80%;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;       
  margin-left: auto;    
  margin-right: auto;   
}
.game-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-row {
  background: #BACCFF;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
}

.info-row span {
  font-weight: bold;
  display: inline-block;
  width: 110px;
}

.info-row a {
  color: #007bff;
  text-decoration: none;
}

.info-row a:hover {
  text-decoration: underline;
}

/*ads*/
.ads-image {
  display: block;                 /* باش تكون بوحدها فالسطر */
  max-width: 100%;                /* ما تفوتش 95% من عرض الشاشة */
                     /* العرض الأصلي ديال الصورة */
                   /* تحافظ على النسبة */
  margin: 5px auto 0;           /* وسط الصفحة أفقياً + تباعد علوي */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.bottom-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  gap: 20px;
}

.reaction-button, .download-button {
  transition: transform 0.15s ease, background-color 0.2s;
  cursor: pointer;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s;
}
.reaction-button:active,
.download-button:active {
  transform: scale(1.1);
  background-color: #e0e0e0;
}

#download-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 120px; /* اختار الحجم اللي بغيتي */
  min-width: 178px;
  max-width: 178px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;

}
.reaction-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
  overflow: hidden;
}

.reaction-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

.reaction-button img {
  width: 22px;
  height: 22px;
}
.divider {
  width: 1px;
  height: 24px;
  background-color: #ccc;
}

/*لا يكتب أي شيء تحت هذا السطر وسير تقود ونتا كاعد كتقلب في الكود ديالي */ 

.button {
  -webkit-tap-highlight-color: transparent; /* يمنع الوميض الأزرق */
  outline: none; /* يمنع الإطار الأزرق */
  user-select: none; /* يمنع تحديد النص باللمس */
  background-color: transparent; /* يضمن عدم تغيير الخلفية */
}

.button:focus,
button:active {
  outline: none;
  background-color: transparent;
}

/* 🌐 إعدادات عامة للصفحة */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}


/* 🌟 ستايل الفوتر */
.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 15px;
  height: 120px; /* نفس القيمة ديال padding-bottom ف main */
}

/* 🌟 ستايل أيقونات الفوتر */
.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  margin: 0 10px;
  text-decoration: none;
}

.footer-icons img {
  width: 30px;
  height: auto;
  border: none;
  outline: none;
}

/* 🌟 روابط داخل الفوتر */
.site-footer p a {
  color: #4fc3f7;
  text-decoration: none;
}
