/* ==== SHARED UPDATES SYSTEM ==== */

/* Badge on navbar */
.update-badge {
  background: #d4af37;
  color: #000;
  font-size: .65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .4rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Updates Ticker (Homepage) */
.updates-ticker {
  background: #1a1a1a;
  padding: 1rem 0;
  border-top: 1px solid #333;
  overflow: hidden;
  font-size: .9rem;
}
.ticker-label {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
}
.ticker-content {
  display: flex;
  gap: 2.5rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  color: #ccc;
}
.ticker-item strong {
  color: #d4af37;
}
.no-updates {
  color: #888;
  font-style: italic;
}
@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .ticker-content { animation-duration: 25s; }
  .update-badge { width: 15px; height: 15px; font-size: .6rem; }
}