/* Earning Badges for App Cards */
.earning-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.earning-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.earning-badge.earn-suite {
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
}

.earning-badge.review-reward {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.earning-badge.has-powerups {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.earning-badge.free-app {
    background: rgba(0, 0, 0, 0.06);
    color: #666;
}