.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 0 0 16px 16px;
}

@media (max-width: 600px) {
    .stats-overview {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-diff {
    font-size: 0.65rem;
    margin-top: 0.25rem;
    display: flex;
    gap: 0.25rem;
    min-height: 0.8rem;
}

.stat-diff-add { color: #2ecc71; }
.stat-diff-remove { color: #e74c3c; }

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

