.traffic-stats {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #1877f2;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #65676b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dark Mode */
body.dark-mode .stat-item {
    background: #242526;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .stat-value {
    color: #4a9eff;
}

body.dark-mode .stat-label {
    color: #b0b3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .traffic-stats {
        margin: 20px auto 15px;
        padding: 0 12px;
    }
    
    .stats-container {
        gap: 10px;
    }
    
    .stat-item {
        padding: 16px 20px;
        min-width: 0;
        flex: 1 1 calc(33.333% - 10px);
        max-width: none;
    }
    
    .stat-icon {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .stat-value {
        font-size: 24px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .stat-icon {
        font-size: 18px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}
