#youtube-stats {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin: 30px 0;
    display: flex;
    flex-direction: column;  /* Stack counters vertically */
    align-items: center;     /* Center horizontally */
    gap: 20px;               /* Space between each counter */
}

.counter {
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-5px); /* subtle hover animation */
}

.number {
    display: block;
    font-size: 48px;   /* big numbers */
    color: white;
}

.label {
    display: block;
    font-size: 16px;   /* smaller label */
    color: #E21E51;    /* label color */
    margin-top: 5px;
}

.counter-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: white;
    transition: transform 0.1s; /* optional for extra smoothness */
}






