/* تصميم النقطة الخضراء */
.live-dot {
  position: absolute;
  top: 50%;
  left: calc(50% + 50px);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 5px #28a745;
  animation: blink 4s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* تنسيق بطاقات البراند */
.brand-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

