.counter2 {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  margin: 5px;
}

.counter2 div {
  text-align: center;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.1);  /* translucent white */
  backdrop-filter: blur(1px);            /* frosted glass blur */
  -webkit-backdrop-filter: blur(1px);    /* Safari support */
  border-radius: 16px;                   /* rounded edges */
  padding: 12px 20px;                    /* space inside */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* subtle depth */
  min-width: 70px;                       /* keeps round pill look */
}

.counter2 small {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  margin-top: 4px;
  color: #ddd; /* slightly brighter so it shows on blur bg */
}
