.flv-coda-viewers-container {
  margin: 15px 0;
  padding: 10px 15px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
  border: 1px solid #e0e6ed;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.flv-coda-viewers-container:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.flv-coda-viewers-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.flv-coda-icon {
  font-size: 20px;
  animation: pulse 2s infinite;
}

.flv-coda-viewers-count {
  font-family: "arad";
  font-weight: bold;
  font-size: 18px;
  color: #2c3e50;
  min-width: 25px;
  text-align: center;
  transition: all 0.5s ease;
}

.flv-coda-viewers-count.up {
  color: #27ae60;
  animation: countUp 0.5s ease;
}

.flv-coda-viewers-count.down {
  color: #e74c3c;
  animation: countDown 0.5s ease;
}

.flv-coda-text {
  font-family: "arad";
  color: black;
  font-size: 14px;
  line-height: 1.4;
}

/* انیمیشن‌ها */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes countUp {
  0% {
    transform: translateY(-5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes countDown {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .flv-coda-viewers-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .flv-coda-text {
    flex-basis: 100%;
  }
}
