#visitor-stats.modern-style {
  text-align: center;
  background: #ffffff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: inline-block;
  max-width: 100%;
  font-family: sans-serif;
}

#visitor-stats .live-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

#visitor-stats .numbers-row {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
