.stats-ticker {
    flex: 1;
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.3px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stat-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.stat-item.active {
    display: block;
}

