/* advertisement-stats.css */
.ad-stats-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.ad-stats-top {
    width: 100%;
}

.ad-stats-bottom {
    display: flex;
    gap: 15px;
    width: 100%;
}

.ad-stat-box {
    background: rgba(248, 249, 250, 0.2); /* شفافیت برای بهتر دیده شدن بلور */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    
    /* افکت بلور */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* برای مرورگرهای وبکیت */
}

.ad-stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #ddb900;
    display: block;
}

.ad-stat-label {
    font-size: 0.9em;
    color: #fff;
    margin-top: 5px;
}

/* دسکتاپ */
@media (min-width: 768px) {
    .ad-stats-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .ad-stats-top {
        width: auto;
        flex: 1;
    }
    
    .ad-stats-bottom {
        width: auto;
        flex: 2;
    }
    
    .ad-stat-box {
        min-width: 150px;
    }
}