.counter-container {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 10px;
  padding: 10px 15px;
  margin: 15px auto;
  max-width: 900px;
  width: 95%;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.counter-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding-bottom: 8px;
}

.counter-item {
  text-align: center;
  min-width: 80px;
}

.counter-label {
  font-size: 0.7rem;
  color: #aaa;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.counter-value {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: monospace;
  color: #fff;
}

.counter-value.highlight {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-footer {
  text-align: center;
  font-size: 0.65rem;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 6px;
  margin-top: 5px;
}

.counter-footer a {
  color: #ff4b2b;
  text-decoration: none;
}

.counter-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .counter-stats {
    gap: 8px;
  }
  .counter-item {
    min-width: 70px;
  }
  .counter-label {
    font-size: 0.65rem;
  }
  .counter-value {
    font-size: 1rem;
  }
}
