/* ✅ حاوية التقييم */
.post-ratings {
  text-align: center;
  margin: 30px auto;
  max-width: 420px;
  font-family: Tahoma, Arial, sans-serif;
}

/* ✅ صف الكروت */
.yc-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}

/* ✅ كارت التقييم */
.yc-card {
  background: #111923;
  color: #fff;
  border: none;
  padding: 18px 24px;
  border-radius: 12px;
  min-width: 120px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.yc-card.disabled,
.yc-card:disabled {
  opacity: 0.6;
  cursor: default;
}

.yc-card:hover:not(.disabled) {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.3);
}

/* ✅ الأيقونات */
.yc-ico {
  font-size: 26px;
  line-height: 1;
}

.yc-like {
  background: #12283f;
  color: #32b4ff;
}

.yc-dislike {
  background: #1c2027;
  color: #ff5b5b;
}

.yc-count {
  font-weight: 700;
  font-size: 20px;
}

/* ✅ النصوص تحت الكروت */
.yc-meta {
  margin: 8px 0 14px;
  font-size: 15px;
  color: #aaa;
}
.yc-meta strong {
  color: #ddd;
  margin-left: 4px;
}

/* ✅ شريط الشعبية */
.yc-progress {
  width: 100%;
  height: 34px;
  border-radius: 50px;
  background: #d9d9d9;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}

.yc-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5b5b 0%, #2f8aff 100%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
  transition: width 1s ease; /* ✅ حركة تدريجية للعرض */
  white-space: nowrap;
  width: 0; /* يبدأ من الصفر */
}

