/* Anonymous Counter — community solidarity display */
.anonymous-counter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.counter-container {
  max-width: 600px;
  margin: 0 auto;
}

.counter-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.counter-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.counter-period {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.counter-context {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

.counter-context a {
  color: var(--accent-light);
  text-decoration: underline;
}

.counter-context a:hover {
  color: white;
}

@media (max-width: 768px) {
  .counter-number {
    font-size: 3rem;
  }
  .anonymous-counter {
    padding: 1.5rem 1rem;
  }
}
