.fan-counter {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 8px, transparent 8px 16px),
    #006747;
  border-bottom: 5px solid #cfc493;
  box-shadow: 0 5px 0 #111;
  text-align: center;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.fan-counter__number {
  min-width: 4ch;
  color: #ffdd57;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  text-shadow: 3px 3px 0 #111;
}

.fan-counter__label {
  max-width: 38rem;
  font-size: clamp(0.85rem, 2.4vw, 1.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .fan-counter {
    padding: 0.7rem 0.75rem;
  }

  .fan-counter__label {
    max-width: 15rem;
  }
}
